Merge pull request #106 from yangsfang/issue-104-fix

Fixes language switch button being partially unclickable
This commit is contained in:
Shawn 2023-09-06 13:47:17 -06:00 committed by GitHub
commit 5c72a83def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,12 +61,6 @@ class _HomeMenuState extends State<HomeMenu> {
PopNavigatorUnderlay(),
AppHeader(
isTransparent: true,
backIcon: AppIcons.close,
trailing: (_) => LocaleSwitcher(),
),
/// Content
SafeArea(
child: Center(
@ -90,6 +84,12 @@ class _HomeMenuState extends State<HomeMenu> {
),
),
),
AppHeader(
isTransparent: true,
backIcon: AppIcons.close,
trailing: (_) => LocaleSwitcher(),
),
],
);
}