Added shared bookmarks screen and archived bookmarks screen

This commit is contained in:
Juan Gilsanz Polo
2024-02-28 01:13:55 +01:00
parent 4633023b4f
commit 06df3c2e0a
18 changed files with 663 additions and 236 deletions

View File

@@ -5,3 +5,5 @@ enum ConnectionMethod { http, https }
enum SelectedTheme { system, light, dark }
enum AuthResult { success, invalidToken, other }
enum FilteredBookmarksMode { tag, shared, archived }

View File

@@ -7,6 +7,6 @@ class ScaffoldMessengerKeys {
static final search = GlobalKey<ScaffoldMessengerState>();
static final tags = GlobalKey<ScaffoldMessengerState>();
static final addBookmark = GlobalKey<ScaffoldMessengerState>();
static final tagBookmarks = GlobalKey<ScaffoldMessengerState>();
static final filteredBookmarks = GlobalKey<ScaffoldMessengerState>();
static final webview = GlobalKey<ScaffoldMessengerState>();
}