mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-24 07:00:47 -04:00
xfer
This commit is contained in:
parent
9d8b609844
commit
bc3ed79cc2
23 changed files with 458 additions and 275 deletions
16
lib/providers/connection_state.dart
Normal file
16
lib/providers/connection_state.dart
Normal file
|
@ -0,0 +1,16 @@
|
|||
import '../tools/tools.dart';
|
||||
|
||||
enum ConnectionState {
|
||||
detached,
|
||||
detaching,
|
||||
attaching,
|
||||
attachedWeak,
|
||||
attachedGood,
|
||||
attachedStrong,
|
||||
fullyAttached,
|
||||
overAttached,
|
||||
}
|
||||
|
||||
ExternalStreamState<ConnectionState> globalConnectionState =
|
||||
ExternalStreamState<ConnectionState>(ConnectionState.detached);
|
||||
var globalConnectionStateProvider = globalConnectionState.provider();
|
Loading…
Add table
Add a link
Reference in a new issue