mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat(mobile): drift local albums page (#19817)
* feat(mobile): drift local albums page * fix: lint * refactor: use AsyncValue * fix: lint * local album thumbnail --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
parent
e703685d8d
commit
a556de67b0
9 changed files with 294 additions and 13 deletions
|
|
@ -715,6 +715,22 @@ class DriftLibraryRoute extends PageRouteInfo<void> {
|
|||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftLocalAlbumsPage]
|
||||
class DriftLocalAlbumsRoute extends PageRouteInfo<void> {
|
||||
const DriftLocalAlbumsRoute({List<PageRouteInfo>? children})
|
||||
: super(DriftLocalAlbumsRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'DriftLocalAlbumsRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const DriftLocalAlbumsPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftLockedFolderPage]
|
||||
class DriftLockedFolderRoute extends PageRouteInfo<void> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue