From 9e31326bf5e95b9cd09a89a0bc98d83fcbd3bb29 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sat, 9 Aug 2025 16:42:56 +0800 Subject: [PATCH] opt search bar Closes #971 Signed-off-by: bggRGjQaUbCoE --- lib/pages/home/view.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/pages/home/view.dart b/lib/pages/home/view.dart index 8cc10445..3d5cb050 100644 --- a/lib/pages/home/view.dart +++ b/lib/pages/home/view.dart @@ -149,7 +149,11 @@ class _HomePageState extends State Widget customAppBar(ThemeData theme) { if (!_homeController.hideSearchBar) { - return searchBarAndUser(theme); + return Container( + height: 52, + padding: const EdgeInsets.fromLTRB(14, 6, 14, 0), + child: searchBarAndUser(theme), + ); } return StreamBuilder( stream: _homeController.searchBarStream?.stream.distinct(),