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 36aa4722a3 - Show all commits

View File

@@ -31,7 +31,8 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
@override
Widget build(BuildContext context) {
return Scaffold(
return SafeArea(
child: Scaffold(
appBar: AppBar(
centerTitle: true,
title: Text(
@@ -101,6 +102,7 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
),
),
),
),
);
}