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:
Alex 2025-07-10 11:59:15 -05:00 committed by GitHub
parent 1f50a0075e
commit 68db17028b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 730 additions and 8 deletions

View file

@ -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> {