mirror of
https://github.com/immich-app/immich.git
synced 2026-05-23 08:02:29 -04:00
0ef04d9baa
* feat(mobile): slideshow view * move slideshow settings to metadata store * remove watch in initState * wrap progress bar in safearea * show slideshow button on remote albums * fix crash on unknown assets * always show slideshow option * add zoom effect * add padding to slideshow settings * chore: styling tweak --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
25 lines
551 B
Dart
25 lines
551 B
Dart
enum SortOrder {
|
|
asc,
|
|
desc;
|
|
|
|
SortOrder reverse() {
|
|
return this == SortOrder.asc ? SortOrder.desc : SortOrder.asc;
|
|
}
|
|
}
|
|
|
|
enum TextSearchType { context, filename, description, ocr }
|
|
|
|
enum AssetVisibilityEnum { timeline, hidden, archive, locked }
|
|
|
|
enum ActionSource { timeline, viewer }
|
|
|
|
enum CleanupStep { selectDate, scan, delete }
|
|
|
|
enum AssetKeepType { none, photosOnly, videosOnly }
|
|
|
|
enum AssetDateAggregation { start, end }
|
|
|
|
enum SlideshowLook { contain, cover, blurredBackground }
|
|
|
|
enum SlideshowDirection { forward, backward, shuffle }
|