webview_all 0.5.2 copy "webview_all: ^0.5.2" to clipboard
webview_all: ^0.5.2 copied to clipboard

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

example/lib/main.dart

/*
 * Copyright (C) 2023-2025 moluopro. All rights reserved.
 * Github: https://github.com/moluopro
 */

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({super.key, this.title});
  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://pub.dev/packages/webview_all"),
      ),
    );
  }
}
54
likes
160
points
2.12k
downloads

Publisher

verified publisherabandoft.com

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

abutil, flutter, flutter_web_plugins, webview_all_cef, webview_flutter, webview_flutter_platform_interface, webview_flutter_web, webview_windows

More

Packages that depend on webview_all