veilidchat/lib/providers/connection_state.dart

20 lines
508 B
Dart
Raw Normal View History

2023-07-26 17:42:11 -04:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
2023-07-26 14:20:29 -04:00
2023-01-10 21:04:18 -05:00
import '../tools/tools.dart';
2023-08-17 18:10:24 -04:00
enum GlobalConnectionState {
2023-01-10 21:04:18 -05:00
detached,
detaching,
attaching,
attachedWeak,
attachedGood,
attachedStrong,
fullyAttached,
overAttached,
}
2023-08-17 18:10:24 -04:00
ExternalStreamState<GlobalConnectionState> globalConnectionState =
ExternalStreamState<GlobalConnectionState>(GlobalConnectionState.detached);
AutoDisposeStreamProvider<GlobalConnectionState> globalConnectionStateProvider =
2023-07-26 17:42:11 -04:00
globalConnectionState.provider();