From bc20593661dac3aca566f13ef07188fed91bf400 Mon Sep 17 00:00:00 2001 From: marco Date: Thu, 22 Jan 2026 14:55:46 +0100 Subject: [PATCH] added button to navigate to settings --- lib/pages/collections_list_page.dart | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/pages/collections_list_page.dart b/lib/pages/collections_list_page.dart index d4c36c6..e4dd272 100644 --- a/lib/pages/collections_list_page.dart +++ b/lib/pages/collections_list_page.dart @@ -9,6 +9,7 @@ import '../service/storage.dart'; import '../widgets/create_bookmark_collection_dialog.dart'; import 'collection_page.dart'; import 'search_page.dart' show SearchPage; +import 'settings_page.dart'; class CollectionsListPage extends StatefulWidget { const CollectionsListPage({super.key}); @@ -103,8 +104,13 @@ class _CollectionsListPageState extends State { IconButton( onPressed: () => Navigator.of(context).pushNamed(SearchPage.routeName), - icon: Icon(Icons.search), + icon: Icon(Icons.search_rounded), ), + IconButton( + onPressed: () => + Navigator.of(context).pushNamed(SettingsPage.routeName), + icon: Icon(Icons.settings_rounded), + ), ], ), floatingActionButton: FloatingActionButton(