Files
linkding-ios/lib/constants/enums.dart
Juan Gilsanz Polo 3f02dfc950 Added sorting options
2024-03-03 17:27:16 +01:00

16 lines
346 B
Dart

enum LoadStatus { loading, loaded, error }
enum ConnectionMethod { http, https }
enum SelectedTheme { system, light, dark }
enum AuthResult { success, invalidToken, other }
enum FilteredBookmarksMode { tag, shared, archived }
enum ReadStatus { all, unread, read }
enum SortingType { date, title }
enum SortingWay { descendant, ascendant }