WebView In Flutter

WebSite into App

--

This blog will cover all the errors while making an webView app

Get the packages updated version here

Setting up packages

Step 1: Adding dependencies

Add the package at pubspec.yaml file.

Step-2: Importing

Setting up Files Permisions

1. Add Internet permission

Add this line in file AndroidManifest.xml

file path: android/app/src/main/AndroidManifest.xml

2. Add this key for iOS

file path: iOS/Runner/Info.plist

3. Add full url (with http://www)

JavaScriptMode is restricted default. Unrestricted it by adding javascriptMode: JavascriptMode.unrestricted,

--

--