From 5229dd6002b05736e9cb41c9a013daf883df38a0 Mon Sep 17 00:00:00 2001 From: Mincheol Shin Date: Tue, 10 Sep 2024 18:44:06 +0900 Subject: [PATCH] bugfix: Scroll issue on iOS when focusing on a text field in WebView - Prevent unwanted scrolling when a text field in the WebView is focused on iOS. --- lib/widget/iamport_webview.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/widget/iamport_webview.dart b/lib/widget/iamport_webview.dart index 735fd91..3a334cb 100644 --- a/lib/widget/iamport_webview.dart +++ b/lib/widget/iamport_webview.dart @@ -78,6 +78,7 @@ class _IamportWebViewState extends State { Widget build(BuildContext context) { return Scaffold( appBar: widget.appBar, + resizeToAvoidBottomInset: false, body: SafeArea( child: IndexedStack( index: _isWebviewLoaded,