mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
47 lines
1.2 KiB
Dart
47 lines
1.2 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
final isDesktop = Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|
|
final isAndroid = Platform.isAndroid;
|
|
|
|
// This must be initialized before use, in main.dart.
|
|
final prefProvider = Provider<SharedPreferences>((ref) {
|
|
throw UnimplementedError();
|
|
});
|
|
|
|
final logLevelProvider = StateNotifierProvider<LogLevelNotifier, Level>(
|
|
(ref) => LogLevelNotifier(Logger.root.level));
|
|
|
|
class LogLevelNotifier extends StateNotifier<Level> {
|
|
LogLevelNotifier(Level level) : super(level);
|
|
|
|
void setLogLevel(Level level) {
|
|
Logger.root.level = level;
|
|
state = level;
|
|
}
|
|
}
|
|
|
|
abstract class ApplicationStateNotifier<T>
|
|
extends StateNotifier<AsyncValue<T>> {
|
|
ApplicationStateNotifier() : super(const AsyncValue.loading());
|
|
|
|
@protected
|
|
Future<void> updateState(Future<T> Function() guarded) async {
|
|
final result = await AsyncValue.guard(guarded);
|
|
if (mounted) {
|
|
state = result;
|
|
}
|
|
}
|
|
|
|
@protected
|
|
void setData(T value) {
|
|
if (mounted) {
|
|
state = AsyncValue.data(value);
|
|
}
|
|
}
|
|
}
|