nc-photos/lib/lab.dart

16 lines
260 B
Dart
Raw Normal View History

2021-08-09 02:46:16 +08:00
import 'package:nc_photos/pref.dart';
2021-08-08 04:34:44 +08:00
/// Experimental feature flags
class Lab {
factory Lab() {
2021-09-15 14:58:06 +08:00
_inst ??= Lab._();
2021-08-08 04:34:44 +08:00
return _inst!;
}
2021-08-09 02:46:16 +08:00
bool get enableSharedAlbum => Pref.inst().isLabEnableSharedAlbumOr(false);
2021-08-08 04:34:44 +08:00
Lab._();
static Lab? _inst;
}