In iOS, when using the swipe-back gesture to navigate back but then canceling the gesture midway, the buttons on the WebView page become unclickable. How can this issue be resolved? The video link
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text("title"),
),
body: Container(
color: Colors.red,
child: InAppWebView(
initialOptions: InAppWebViewGroupOptions(
android: AndroidInAppWebViewOptions(
useHybridComposition: true,
),
crossPlatform: InAppWebViewOptions(
useShouldOverrideUrlLoading: true,
transparentBackground: true,
javaScriptEnabled: true,
mediaPlaybackRequiresUserGesture: false,
),
ios: IOSInAppWebViewOptions(),
),
initialUrlRequest: URLRequest(url: Uri.parse(";)),
),
),
);
}