mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
feat(mobile): show local gallery in guest mode before login
This commit is contained in:
@@ -1224,6 +1224,22 @@ class FolderRouteArgs {
|
||||
int get hashCode => key.hashCode ^ folder.hashCode;
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [GuestGalleryPage]
|
||||
class GuestGalleryRoute extends PageRouteInfo<void> {
|
||||
const GuestGalleryRoute({List<PageRouteInfo>? children})
|
||||
: super(GuestGalleryRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'GuestGalleryRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const GuestGalleryPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [HeaderSettingsPage]
|
||||
class HeaderSettingsRoute extends PageRouteInfo<void> {
|
||||
|
||||
Reference in New Issue
Block a user