flutter_webview_plugin icon indicating copy to clipboard operation
flutter_webview_plugin copied to clipboard

Community WebView Plugin - Allows Flutter to communicate with a native WebView.

Results 134 flutter_webview_plugin issues
Sort by recently updated
recently updated
newest added
trafficstars

The plugin `flutter_webview_plugin` uses a deprecated version of the Android embedding. To avoid unexpected runtime failures, or future build failures, try to see if this plugin supports the Android V2...

## System info Issue occurs on: iOS / Android / both Plugin version: xxx Flutter doctor output: ``` paste it here... ``` ## Steps to Reproduce class WebDetail extends StatelessWidget...

[upgrade to latest Flutter version and Android Version](https://github.com/fluttercommunity/flutter_webview_plugin/commit/2c1fd19f713750575dce6733f3c7c4651bece9dd)

# Description After updating our app to use the latest null-safety release, we realized the `onStateChanged` stream stopped working in our Android devices and emulators. After a few hours of...

i built an app to listen to some values on HTML file but first you should listen to onStateChanged function but this Stream not working at all (also with the...

_onStateChanged = _flutterWebViewPlugin.onStateChanged.listen(_webViewStateChanged); void _webViewStateChanged(WebViewStateChanged event) { switch (event.type) { case WebViewState.startLoad: _onPageStart(event.url); break; case WebViewState.finishLoad: _onPageEnd(event.url); break; case WebViewState.shouldStart: wtPrint("_webviewplugin eventurl : ${event.url}"); if (Platform.isAndroid) { return; } String...

Hi Hope you are doing good. I have one requirement. Is it possible to load and display Three.js content in Flutter Web Application. Also I want interactions with JS to...

## System info Issue occurs on: both Plugin version: 0.4.0 Flutter doctor output: ``` $ flutter doctor -v [✓] Flutter (Channel stable, 2.5.0, on macOS 11.5.2 20G95 darwin-x64, locale en-GB)...

Hi Team thanks for the fantastic library I just want to know is there any function to disable the back press in android webviewscaffold?

``` var onBack = flutterWebViewPlugin.onBack.listen((_) async { Navigator.pop(context); }); ```