iosWebViewFix/flutter_inappwebview_platfo...
unknown 981c0356b8 initial windows implementation #460 2024-01-31 14:44:18 +01:00
..
lib initial windows implementation #460 2024-01-31 14:44:18 +01:00
test updated analysis options 2023-11-27 18:41:59 +01:00
.gitignore first commit federated-plugin 2023-11-17 23:28:11 +01:00
.metadata first commit federated-plugin 2023-11-17 23:28:11 +01:00
CHANGELOG.md windows: added openDevTools, callDevToolsProtocolMethod, addDevToolsProtocolEventListener and removeDevToolsProtocolEventListener methods, added some more inappwebview and inappbrowser basic settings 2024-01-31 04:04:26 +01:00
LICENSE Added InAppBrowser.onMainWindowWillClose event, Added WindowType.WINDOW for InAppWebViewSettings.windowType, fix #1738, Fixed InAppWebViewController.callAsyncJavaScript Android-issue when the last line of the functionBody parameter includes a code comment 2023-12-17 22:58:09 +01:00
README.md updated README 2023-11-27 18:48:38 +01:00
analysis_options.yaml updated analysis options 2023-11-27 18:41:59 +01:00
build.yaml created flutter_inappwebview_macos 2023-11-27 09:46:37 +01:00
pubspec.yaml windows: fixed dealloc webviews logic, implemented takeScreenshot, added WebViewEnvironment and WebViewEnvironmentSettings classes 2024-01-27 18:41:10 +01:00

README.md

flutter_inappwebview_platform_interface

A common platform interface for the flutter_inappwebview plugin.

This interface allows platform-specific implementations of the flutter_inappwebview plugin, as well as the plugin itself, to ensure they are supporting the same interface.

Usage

To implement a new platform-specific implementation of flutter_inappwebview, extend InAppWebViewPlatform with an implementation that performs the platform-specific behavior, and when you register your plugin, set the default InAppWebViewPlatform by calling InAppWebViewPlatform.instance = MyPlatformWebview().

Note on breaking changes

Strongly prefer non-breaking changes (such as adding a method to the interface) over breaking changes for this package.

See https://flutter.dev/go/platform-interface-breaking-changes for a discussion on why a less-clean interface is preferable to a breaking change.