when I switch to some pages in my application that I set up with InAppwebView, I get this error ( updateAcquireFence: Did not find frame ) the same project works without any problem on the device with android version 6, but on devices with android version 11 12 I get this error. Can you help, thanks in advance
InAppWebView(
onWebViewCreated: ((_controller) {
controller = _controller;
}),
initialUrlRequest: URLRequest(
url: Uri.parse('')),
initialOptions: InAppWebViewGroupOptions(
crossPlatform: InAppWebViewOptions(
javaScriptEnabled: true,
mediaPlaybackRequiresUserGesture: false,
supportZoom: false,
),
android: AndroidInAppWebViewOptions(
mixedContentMode: AndroidMixedContentMode
.MIXED_CONTENT_ALWAYS_ALLOW,
)),
onProgressChanged:
(InAppWebViewController controller, int progress) {
setState(() {
this.progress = progress / 100;
});
},
),