You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-08 23:07:06 +02: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:
@ -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> {
|
||||
|
Reference in New Issue
Block a user