From 63d9ed400d1fc61614dee1df4934ebfaf9cddee6 Mon Sep 17 00:00:00 2001 From: mathiskirchner Date: Sat, 22 Nov 2025 16:18:37 +0100 Subject: [PATCH] Adjust padding in CustomNavigationBar - Add vertical minimum padding to SafeArea - Remove bottom padding in bottomNavigationBar - replaced left/right padding in bottomNavigationBar with EdgeInsets.symmetric - removed bottom padding from bottomNavigationBar --- lib/presentation/views/main_menu/custom_navigation_bar.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/custom_navigation_bar.dart b/lib/presentation/views/main_menu/custom_navigation_bar.dart index 28331b8..2805689 100644 --- a/lib/presentation/views/main_menu/custom_navigation_bar.dart +++ b/lib/presentation/views/main_menu/custom_navigation_bar.dart @@ -32,6 +32,7 @@ class _CustomNavigationBarState extends State @override Widget build(BuildContext context) { return SafeArea( + minimum: EdgeInsets.symmetric(vertical: 30), child: Scaffold( appBar: AppBar( centerTitle: true, @@ -56,7 +57,7 @@ class _CustomNavigationBarState extends State body: tabs[currentIndex], extendBody: true, bottomNavigationBar: Padding( - padding: const EdgeInsets.only(left: 12.0, right: 12.0, bottom: 18.0), + padding: const EdgeInsets.symmetric(horizontal: 12.0), child: Material( elevation: 10, borderRadius: BorderRadius.circular(24),