From fc60942b6601a7e36205a76914fc1264fd8edd0a Mon Sep 17 00:00:00 2001 From: Yang Fang <31492969+yangsfang@users.noreply.github.com> Date: Fri, 1 Sep 2023 13:40:30 -0700 Subject: [PATCH] Fixes language switch button being partially unclickable ExpandedScrollingColumn is on top of the AppHeader and blocks presses on the left half of the language switch button. This commit moves the AppHeader to the top of the stack. --- lib/ui/screens/home_menu/home_menu.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/ui/screens/home_menu/home_menu.dart b/lib/ui/screens/home_menu/home_menu.dart index 4604e584..bdf4823a 100644 --- a/lib/ui/screens/home_menu/home_menu.dart +++ b/lib/ui/screens/home_menu/home_menu.dart @@ -61,12 +61,6 @@ class _HomeMenuState extends State { PopNavigatorUnderlay(), - AppHeader( - isTransparent: true, - backIcon: AppIcons.close, - trailing: (_) => LocaleSwitcher(), - ), - /// Content SafeArea( child: Center( @@ -90,6 +84,12 @@ class _HomeMenuState extends State { ), ), ), + + AppHeader( + isTransparent: true, + backIcon: AppIcons.close, + trailing: (_) => LocaleSwitcher(), + ), ], ); }