feat(mobile): show local gallery in guest mode before login

This commit is contained in:
alextran1502
2026-05-07 15:21:20 +00:00
parent 45ccdb37fb
commit 13446022d9
7 changed files with 94 additions and 2 deletions
+16
View File
@@ -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> {