mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat(mobile): album shared user editing (#20671)
* feat(mobile): album shared user editing * fix: album leaving * i18n and options button --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
parent
13d43e193e
commit
7118dca559
11 changed files with 335 additions and 14 deletions
|
|
@ -667,6 +667,22 @@ class CropImageRouteArgs {
|
|||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftAlbumOptionsPage]
|
||||
class DriftAlbumOptionsRoute extends PageRouteInfo<void> {
|
||||
const DriftAlbumOptionsRoute({List<PageRouteInfo>? children})
|
||||
: super(DriftAlbumOptionsRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'DriftAlbumOptionsRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const DriftAlbumOptionsPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftAlbumsPage]
|
||||
class DriftAlbumsRoute extends PageRouteInfo<void> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue