From d92449e53abab14ca11651917111a69eaff8cf63 Mon Sep 17 00:00:00 2001 From: Liplum Date: Mon, 13 Nov 2023 21:08:57 +0800 Subject: [PATCH] remove `resizeToAvoidBottomInset: false` in index.dart --- lib/index.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/index.dart b/lib/index.dart index 0de524c76..c6c5ef134 100644 --- a/lib/index.dart +++ b/lib/index.dart @@ -79,13 +79,11 @@ class _MainStagePageState extends State { if (context.isPortrait) { final isKeyboardOpen = MediaQuery.of(context).viewInsets.bottom != 0.0; return Scaffold( - resizeToAvoidBottomInset: false, body: widget.navigationShell, bottomNavigationBar: isKeyboardOpen ? null : buildButtonNavigationBar(), ); } else { return Scaffold( - resizeToAvoidBottomInset: false, body: [ buildNavigationRail(), const VerticalDivider(),