Load tag bookmarks by tag id

This commit is contained in:
Juan Gilsanz Polo
2024-02-25 00:39:27 +01:00
parent ee00de2582
commit 58f5b90da5
7 changed files with 247 additions and 38 deletions

View File

@@ -55,7 +55,7 @@ final List<RouteBase> appRoutes = [
GoRoute(
path: RoutesPaths.tagBookmarks,
name: RoutesNames.tagBookmarks,
builder: (context, state) => TagBookmarksScreen(tag: state.extra as Tag),
builder: (context, state) => TagBookmarksScreen(tagId: state.pathParameters['id'], tag: state.extra as Tag?),
),
GoRoute(
path: RoutesPaths.customization,