Web View

Web view is a widget that can preview websites

First, you have to install in the dependencies webview_flutter: ^3.0.4

Its important to addminSdkVersion 20 in build.gradle

Later Import import 'package:webview_flutter/webview_flutter.dart';

And finally create the web view

WebView(
  initialUrl:"url",
  javascriptMode: JavascriptMode.unrestricted,
),

Last updated