Add Bookmarking (Local to device)

Changelog-Added: Bookmarking
Closes: #649
This commit is contained in:
Joel Klabo
2023-02-18 15:41:39 -08:00
committed by William Casarin
parent 87a0bdac94
commit 8b9958a4ad
6 changed files with 153 additions and 0 deletions

View File

@@ -100,6 +100,10 @@ struct SideMenuView: View {
navLabel(title: NSLocalizedString("Relays", comment: "Sidebar menu label for Relays view."), systemImage: "network")
}
NavigationLink(destination: BookmarksView(state: damus_state)) {
navLabel(title: NSLocalizedString("Bookmarks", comment: "Sidebar menu label for Bookmarks view."), systemImage: "bookmark")
}
NavigationLink(destination: ConfigView(state: damus_state)) {
navLabel(title: NSLocalizedString("Settings", comment: "Sidebar menu label for accessing the app settings"), systemImage: "gear")
}