From 4483e4a1f5242a3b6293b864efb9f134ad2d9ee0 Mon Sep 17 00:00:00 2001 From: PartyDonut Date: Tue, 28 Oct 2025 22:11:52 +0100 Subject: [PATCH] chore: Changed some bottom app bar properties --- lib/screens/shared/nested_bottom_appbar.dart | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/screens/shared/nested_bottom_appbar.dart b/lib/screens/shared/nested_bottom_appbar.dart index da99db5..1d75733 100644 --- a/lib/screens/shared/nested_bottom_appbar.dart +++ b/lib/screens/shared/nested_bottom_appbar.dart @@ -9,11 +9,10 @@ class NestedBottomAppBar extends ConsumerWidget { @override Widget build(BuildContext context, WidgetRef ref) { return Padding( - padding: const EdgeInsets.all(8.0).copyWith(bottom: MediaQuery.paddingOf(context).bottom), - child: Card( - color: Theme.of(context).colorScheme.surfaceContainerLow, - elevation: 5, - shape: RoundedRectangleBorder( + padding: const EdgeInsets.all(8.0).copyWith(bottom: MediaQuery.paddingOf(context).bottom + 8), + child: Container( + decoration: BoxDecoration( + color: Theme.of(context).colorScheme.surfaceContainerLow.withValues(alpha: 0.965), borderRadius: BorderRadiusDirectional.circular(24), ), child: Padding(