Skip to content

OpenBonfire/fireview-old

 
 

Repository files navigation

Webview for All Flutter Platform

English Doc    中文文档

a webview widget with full-platform support, based on the existing packages

Platform Status Note
Android SDK 20+
IOS SDK 9+
Web Any
Windows Win 7+
macOS Any
Linux Any

⚠: Linux and macOS platforms require more testing.

Quick Start

  1. Add webview_all as a dependency in your pubspec.yaml file.

  2. Just use it:

import 'package:flutter/material.dart';
import 'package:webview_all/webview_all.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Webview All',
      debugShowCheckedModeBanner: false,
      home: MyBrowser(),
    );
  }
}

class MyBrowser extends StatefulWidget {
  const MyBrowser({Key? key, this.title}) : super(key: key);
  final String? title;
  
  @override
  _MyBrowserState createState() => _MyBrowserState();
}

class _MyBrowserState extends State<MyBrowser> {
  @override
  Widget build(BuildContext context) {
    return const Scaffold(
        body: Center(
          // Look here!  
          child: Webview(url: "https://www.wechat.com/en")
      )
    );
  }
}

Run flutter run -d windows, then you will see:

example

Detail

On iOS the Webview widget is backed by a WKWebView.

On Android the Webview widget is backed by a WebView.

On web the Webview widget will use the webview_flutter_web plugin.

On desktop the Webview widget will use the webf plugin and only support less complex webpages.

About

Webview for All Flutter Platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 40.4%
  • CMake 32.9%
  • Dart 17.6%
  • Swift 3.3%
  • HTML 3.1%
  • C 2.4%
  • Other 0.3%