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