feature: Cleaned up app bar

This commit is contained in:
PartyDonut 2025-07-30 18:54:54 +02:00
parent 79310c7bf4
commit a9cdd5c506
7 changed files with 59 additions and 69 deletions

View file

@ -108,6 +108,13 @@ class HomeScreen extends ConsumerWidget {
selectedIcon: Icon(e.selectedIcon),
route: const LibraryRoute(),
action: () => e.navigate(context),
floatingActionButton: AdaptiveFab(
context: context,
title: context.localized.search,
key: Key(e.name.capitalize()),
onPressed: () => context.router.navigate(LibrarySearchRoute()),
child: const Icon(IconsaxPlusLinear.search_status),
),
);
}
})