mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
Added Live Wallpaper settings into Preferences menu for Android. Which lets the user set a live wallpaper based on people.
This commit is contained in:
parent
7d8cd05bc2
commit
7a903d39c0
27 changed files with 1918 additions and 3 deletions
|
|
@ -1822,6 +1822,22 @@ class LibraryRoute extends PageRouteInfo<void> {
|
|||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [LiveWallpaperSetupPage]
|
||||
class LiveWallpaperSetupRoute extends PageRouteInfo<void> {
|
||||
const LiveWallpaperSetupRoute({List<PageRouteInfo>? children})
|
||||
: super(LiveWallpaperSetupRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'LiveWallpaperSetupRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const LiveWallpaperSetupPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [LocalAlbumsPage]
|
||||
class LocalAlbumsRoute extends PageRouteInfo<void> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue