You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-08 23:07:06 +02:00
feat: new create album page (#19731)
* feat: new create album page * finished create album flow * refactor into stateful widgets * refactor * focus fix * lint * default sort * pr feedback
This commit is contained in:
@ -683,6 +683,22 @@ class DriftAssetSelectionTimelineRouteArgs {
|
||||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftCreateAlbumPage]
|
||||
class DriftCreateAlbumRoute extends PageRouteInfo<void> {
|
||||
const DriftCreateAlbumRoute({List<PageRouteInfo>? children})
|
||||
: super(DriftCreateAlbumRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'DriftCreateAlbumRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const DriftCreateAlbumPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftFavoritePage]
|
||||
class DriftFavoriteRoute extends PageRouteInfo<void> {
|
||||
|
Reference in New Issue
Block a user