mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
feat: show remainder assets info (#21114)
* feat: show remainder assets info * pr feedback
This commit is contained in:
parent
66c657ca8a
commit
ab2849781a
11 changed files with 195 additions and 45 deletions
|
|
@ -796,6 +796,22 @@ class DriftBackupAlbumSelectionRoute extends PageRouteInfo<void> {
|
|||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftBackupAssetDetailPage]
|
||||
class DriftBackupAssetDetailRoute extends PageRouteInfo<void> {
|
||||
const DriftBackupAssetDetailRoute({List<PageRouteInfo>? children})
|
||||
: super(DriftBackupAssetDetailRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'DriftBackupAssetDetailRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const DriftBackupAssetDetailPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftBackupOptionsPage]
|
||||
class DriftBackupOptionsRoute extends PageRouteInfo<void> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue