You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created widget using InAppWebView and a popover get overlap over the InAppWebView if I try to select the pop up it get click event over InAppWebView
then see left panel and click on second row MyData then click on any card and see the detail page and click on Any Pop up you will see all action (click event was received by graph) This graph is loaded on InAppWebView using html
Self grab
I'm ready to work on this issue!
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Current Behavior
I have created widget using InAppWebView and a popover get overlap over the InAppWebView if I try to select the pop up it get click event over InAppWebView
Expected Behavior
I need to click over the pop Up
Steps with code example to reproduce
Widget vitalCard(BuildContext context) {
return InkWell(
onTap: () {
context.go('${MainRouter.url()}/${VitalSignRouteConstants.graphDetail}',
extra: {
'viewDetails': widget.vitalDetails!.toJson(),
'graphModel': widget.vitalDetails!.graphModel!.toJson()
});
},
child: Card(
margin: const EdgeInsets.only(bottom: AppDimension.minPadding),
clipBehavior: Clip.antiAlias,
elevation: 1,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppDimension.gridCardRadius),
),
child: Padding(
padding: const EdgeInsets.all(8),
child: cardItems(context),
),
),
);
}
Stacktrace/Logs
no logs
Flutter version
Flutter 3.24.3 • channel stable • https://github.com/flutter/flutter.git Framework • revision 2663184aa7 (2 months ago) • 2024-09-11 16:27:48 -0500 Engine • revision 36335019a8 Tools • Dart 3.5.3 • DevTools 2.37.3
Operating System, Device-specific and/or Tool
Chrome Version 131.0.6778.70 (Official Build) (x86_64)
Plugin version
flutter_inappwebview: ^6.1.5
Additional information
To see the behaviour login into this this code is written in flutter and running on web
https://patientv3-dmg8duhqepceceag.eastus2-01.azurewebsites.net
username: patdctdemo17, password: Qwerty11
then see left panel and click on second row MyData then click on any card and see the detail page and click on Any Pop up you will see all action (click event was received by graph) This graph is loaded on InAppWebView using html
Self grab
The text was updated successfully, but these errors were encountered: