Navbar Position fix #21

Merged
sneeex merged 11 commits from enhancement/18-navbar-alignment into development 2025-11-22 17:06:04 +00:00
Showing only changes of commit 5062196463 - Show all commits

View File

@@ -55,9 +55,9 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
body: tabs[currentIndex], body: tabs[currentIndex],
extendBody: true, extendBody: true,
bottomNavigationBar: SafeArea( bottomNavigationBar: SafeArea(
child: Padding( minimum: const EdgeInsets.only(bottom: 30),
padding: const EdgeInsets.symmetric(horizontal: 12.0),
child: Container( child: Container(
margin: const EdgeInsets.symmetric(horizontal: 12.0, vertical: 10),
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(24), borderRadius: BorderRadius.circular(24),
color: CustomTheme.primaryColor, color: CustomTheme.primaryColor,
@@ -103,7 +103,6 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
), ),
), ),
), ),
),
); );
} }