webview_win_floating 2.2.3 copy "webview_win_floating: ^2.2.3" to clipboard
webview_win_floating: ^2.2.3 copied to clipboard

PlatformWindows

WebView for Windows. A Flutter plugin that implements the interface of package webview_flutter.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:webview_win_floating/webview.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State createState() => _MyAppState();
}

class _MyAppState extends State {
  final controller = WinWebViewController();

  @override
  void initState() {
    super.initState();
    //controller.setJavaScriptMode(JavaScriptMode.unrestricted);
    /*
    controller.setNavigationDelegate(NavigationDelegate(
      onNavigationRequest: (request) {
        //return NavigationDecision.navigate;
        return NavigationDecision.prevent;
      },
    ));
    */
    controller.loadRequest(Uri.parse("https://www.facebook.com/"));
  }

  @override
  void dispose() {
    controller.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: WinWebViewWidget(controller: controller),
      ),
    );
  }
}
14
likes
150
pub points
86%
popularity

Publisher

unverified uploader

WebView for Windows. A Flutter plugin that implements the interface of package webview_flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, fullscreen_window, plugin_platform_interface, webview_flutter_platform_interface

More

Packages that depend on webview_win_floating