veilidchat/lib/providers/connection_state.dart
Christien Rioux 411705283d theme work
2023-08-17 18:10:24 -04:00

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();