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 b668f6b9ae - Show all commits

View File

@@ -31,7 +31,9 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
@override
Widget build(BuildContext context) {
return SafeArea(
return Container(
decoration: BoxDecoration(color: CustomTheme.backgroundColor),
child: SafeArea(
minimum: EdgeInsets.symmetric(vertical: 30),
child: Scaffold(
appBar: AppBar(
@@ -104,6 +106,7 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
),
),
),
),
);
}