1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-26 08:54:42 +01:00
nc-photos/lib/session_storage.dart

14 lines
307 B
Dart
Raw Normal View History

2021-04-21 22:17:18 +08:00
/// Hold non-persisted global variables
class SessionStorage {
factory SessionStorage() {
return _inst;
}
SessionStorage._();
/// Whether the range select notification has been shown to user
bool hasShowRangeSelectNotification = false;
static SessionStorage _inst = SessionStorage._();
}