From da0654cd4ee7ceea2b9a9c3288288358445dc09f Mon Sep 17 00:00:00 2001 From: Marcos Date: Mon, 18 May 2026 20:19:36 +0200 Subject: [PATCH] feat: Adjust padding in SearchAppBar for improved layout --- lib/widgets/search_app_bar.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/search_app_bar.dart b/lib/widgets/search_app_bar.dart index 75cdeab..e560f12 100644 --- a/lib/widgets/search_app_bar.dart +++ b/lib/widgets/search_app_bar.dart @@ -61,7 +61,7 @@ class _SearchAppBarState extends State { ), ), ), - padding: const EdgeInsets.only(left: 16, right: 16, top: 7, bottom: 7), + padding: const EdgeInsets.only(left: 8, right: 20, top: 7, bottom: 7), child: Row( children: [ IconButton( @@ -160,7 +160,7 @@ class _SearchAppBarState extends State { ), ), if (widget.trailingWidget != null) ...[ - const SizedBox(width: 8), + const SizedBox(width: 16), Center(child: widget.trailingWidget!), ], ],