gitextract_xv_yhi1o/ ├── LICENSE ├── README.md ├── android/ │ ├── .classpath │ ├── .project │ ├── .settings/ │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ ├── settings.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── io/ │ └── flutter/ │ └── plugins/ │ └── webviewflutter/ │ ├── DisplayListenerProxy.java │ ├── FlutterCookieManager.java │ ├── FlutterWebView.java │ ├── FlutterWebViewClient.java │ ├── InputAwareWebView.java │ ├── JavaScriptChannel.java │ ├── ThreadedInputConnectionProxyAdapterView.java │ ├── WebViewFactory.java │ └── WebViewFlutterPlugin.java ├── ios/ │ ├── Assets/ │ │ └── .gitkeep │ ├── Classes/ │ │ ├── FLTCookieManager.h │ │ ├── FLTCookieManager.m │ │ ├── FLTWKNavigationDelegate.h │ │ ├── FLTWKNavigationDelegate.m │ │ ├── FLTWebViewFlutterPlugin.h │ │ ├── FLTWebViewFlutterPlugin.m │ │ ├── FlutterWebView.h │ │ ├── FlutterWebView.m │ │ ├── JavaScriptChannelHandler.h │ │ └── JavaScriptChannelHandler.m │ ├── Tests/ │ │ └── FLTWebViewTests.m │ └── webview_flutter.podspec ├── lib/ │ ├── platform_interface.dart │ ├── src/ │ │ ├── webview_android.dart │ │ ├── webview_cupertino.dart │ │ └── webview_method_channel.dart │ └── webview_flutter.dart └── pubspec.yaml