mirror of
https://github.com/immich-app/immich.git
synced 2025-11-28 07:49:52 +09:00
feat: show remainder assets info (#21114)
* feat: show remainder assets info * pr feedback
This commit is contained in:
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user