flutter_inappwebview icon indicating copy to clipboard operation
flutter_inappwebview copied to clipboard

Date picker(Calendar) is not open in webview

Open mukkumukesh opened this issue 2 years ago • 2 comments

Environment

Technology Version
Flutter version 2.5.1
Plugin version 5.3.2
Android version 31
iOS version working
Xcode version NA

Device information:

Description

Expected behavior:

The calendar should be open to pic date in webview.

Current behavior: Currently, nothing happens on clicking of input button on webview.

Steps to reproduce

  1. Open webview
  2. Then there is a button from which we tap to select the date on the webview
  3. Then nothing happens

Images

https://user-images.githubusercontent.com/12988908/168590911-68b2dabf-7daf-491c-9165-eb66debdfaeb.mp4

Stacktrace/Logcat

final InAppWebViewGroupOptions options = InAppWebViewGroupOptions(crossPlatform: InAppWebViewOptions(useShouldOverrideUrlLoading: true, supportZoom: false,javaScriptCanOpenWindowsAutomatically: true,javaScriptEnabled: true), android: AndroidInAppWebViewOptions( supportMultipleWindows: true, useHybridComposition: true// crash If am I ussing this key ));

IndexedStack(index: _position, children: <Widget>[ Padding( padding: EdgeInsets.only(top: 56), child: InAppWebView( initialOptions: options, onWebViewCreated: (InAppWebViewController controller) { setCookie(); controller.loadUrl( urlRequest: URLRequest(url: Uri.parse(widget._url))); }, shouldOverrideUrlLoading: navigationDelegate, onLoadStart: showLoader, onLoadStop: hideLoader, androidOnPermissionRequest: (controller, origin, resources) async { return PermissionRequestResponse( resources: resources, action: PermissionRequestResponseAction.GRANT); }, ), ), Center( child: SizedBox( height: 98, width: 98, child: Image.asset("assets/images/loader.gif"), )), ])

mukkumukesh avatar May 16 '22 12:05 mukkumukesh

👋 @mukkumukesh

NOTE: This comment is auto-generated.

Are you sure you have already searched for the same problem?

Some people open new issues but they didn't search for something similar or for the same issue. Please, search for it using the GitHub issue search box or on the official inappwebview.dev website, or, also, using Google, StackOverflow, etc. before posting a new one. You may already find an answer to your problem!

If this is really a new issue, then thank you for raising it. I will investigate it and get back to you as soon as possible. Please, make sure you have given me as much context as possible! Also, if you didn't already, post a code example that can replicate this issue.

In the meantime, you can already search for some possible solutions online! Because this plugin uses native WebView, you can search online for the same issue adding android WebView [MY ERROR HERE] or ios WKWebView [MY ERROR HERE] keywords.

Following these steps can save you, me, and other people a lot of time, thanks!

github-actions[bot] avatar May 16 '22 12:05 github-actions[bot]

I have the same issue

kimonneuhoff avatar Jun 22 '22 22:06 kimonneuhoff