jahangiralommin2 / native_webview

A Flutter plugin that allows you to add an inline WebView.

Home Page:https://pub.dev/packages/native_webview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

native_webview Pub Version

A Flutter plugin that allows you to add an inline WebView.

Motivation

There is already a useful library for working with WebViews in Flutter.

These libraries come with trade-offs such as simple implementation but lack features, or very advanced features and complex implementation.

native_webview is designed to provide users with a standard set of WebView features provided by iOS and Android while keeping the implementation simple.

Requirements

  • Dart: >=2.10.0 <3.0.0
  • Flutter: >=1.22.0 <2.0.0
  • Android: minSdkVersion 24, AndroidX, Kotlin, Chrome version >= 74.0.3729.185
  • iOS: iOS version >= 11.0, Xcode version >= 11, Swift

Getting Started

Usage

class InitialUrlScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Initial URL"),
      ),
      body: WebView(
        initialUrl: "https://flutter.dev",
      ),
    );
  }
}

If you want to see other examples, see example or see DartDoc.

Known issues

Run tests

  • There are tests in `example/integration_test/tests
  • You will need to launch the iOS simulator or Android emulator
make test

About

A Flutter plugin that allows you to add an inline WebView.

https://pub.dev/packages/native_webview

License:Other


Languages

Language:Dart 56.0%Language:Kotlin 19.2%Language:Swift 13.8%Language:Java 9.3%Language:Ruby 1.0%Language:Objective-C 0.3%Language:Shell 0.3%Language:Makefile 0.1%Language:HTML 0.0%