Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can not click element above inappwebview on flutter web #2425

Open
1 of 2 tasks
guptavirendra opened this issue Nov 20, 2024 · 1 comment
Open
1 of 2 tasks

can not click element above inappwebview on flutter web #2425

guptavirendra opened this issue Nov 20, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@guptavirendra
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

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

  • I'm ready to work on this issue!
@guptavirendra guptavirendra added the bug Something isn't working label Nov 20, 2024
@Eric0x
Copy link

Eric0x commented Nov 21, 2024

same issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants