mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
20 lines
508 B
Dart
20 lines
508 B
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../tools/tools.dart';
|
|
|
|
enum GlobalConnectionState {
|
|
detached,
|
|
detaching,
|
|
attaching,
|
|
attachedWeak,
|
|
attachedGood,
|
|
attachedStrong,
|
|
fullyAttached,
|
|
overAttached,
|
|
}
|
|
|
|
ExternalStreamState<GlobalConnectionState> globalConnectionState =
|
|
ExternalStreamState<GlobalConnectionState>(GlobalConnectionState.detached);
|
|
AutoDisposeStreamProvider<GlobalConnectionState> globalConnectionStateProvider =
|
|
globalConnectionState.provider();
|