feat: Adjust padding in SearchAppBar for improved layout

This commit is contained in:
2026-05-18 20:19:36 +02:00
parent 75513da17d
commit da0654cd4e
+2 -2
View File
@@ -61,7 +61,7 @@ class _SearchAppBarState extends State<SearchAppBar> {
), ),
), ),
), ),
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( child: Row(
children: [ children: [
IconButton( IconButton(
@@ -160,7 +160,7 @@ class _SearchAppBarState extends State<SearchAppBar> {
), ),
), ),
if (widget.trailingWidget != null) ...[ if (widget.trailingWidget != null) ...[
const SizedBox(width: 8), const SizedBox(width: 16),
Center(child: widget.trailingWidget!), Center(child: widget.trailingWidget!),
], ],
], ],