opt search bar

Closes #971

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-09 16:42:56 +08:00
parent e77fe2587c
commit 9e31326bf5

View File

@@ -149,7 +149,11 @@ class _HomePageState extends State<HomePage>
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(),