Closed lyh20190329 closed 3 years ago
H5 CODE like: **
**
H5 CODE like: /----
---/
it works ok in phone mobile device
For some reason, tapping on the rendered
Unfortunately, I didn't find any working workaround/solution for dropdown menus on Android Tablets yet. There are some issues to how Flutter embeds Android native views. I hope they will resolve this as soon as possible.
A possible workaround for now on Android tablets is using a custom dropdown menu using html-css-js without using the native <select>
tag.
Anyone can resolve this?thank you very much!
Hi. This seems to be working now with the default flutter_webview
plugin, at least as of v1.0.0.
Any one solve this issue?
Try now the latest version of this plugin with useHybridComposition: true
Android-specific webview option.
@pichillilorenzo due to the supporting issue, I need to use the flutter_inappwebview: ^4.0.0+4
is this possible to fix?
I don't know if useHybridComposition: true
would fix it, that's why I said to try it.
However, flutter_inappwebview: ^4.0.0+4
is not supported unfortunately
This issue has been automatically closed because it was marked as "answered", and there wasn't any recent activity on this issue.
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug and a minimal reproduction of the issue.
I use the inappwebview plugin to open H5,and H5 has
2、flutter code like: InAppWebView( initialUrl: this._url, initialHeaders: {}, initialOptions: InAppWebViewGroupOptions( crossPlatform: InAppWebViewOptions( debuggingEnabled: false, transparentBackground:true, clearCache:true, javaScriptEnabled:true, javaScriptCanOpenWindowsAutomatically:true, ), android: AndroidInAppWebViewOptions(allowFileAccessFromFileURLs:true, appCachePath:_path, mixedContentMode:AndroidMixedContentMode.MIXED_CONTENT_ALWAYS_ALLOW, thirdPartyCookiesEnabled:true,), ), onWebViewCreated: (InAppWebViewController controller) { _inAppcontroller = controller; //_inAppcontroller.clearCache(); }, ...... ....... I use the inAppWebview version is 3.4.0
Which expert clicks, thank you very much!!