fix: Improve receiving shares

This commit is contained in:
Anton Stubenbord
2023-10-03 17:49:38 +02:00
parent 37ed8bbb04
commit ad23df4f89
29 changed files with 529 additions and 348 deletions

View File

@@ -15,6 +15,14 @@ class RequiresLocalAuthenticationState extends AuthenticationState {
const RequiresLocalAuthenticationState();
}
class CheckingLoginState extends AuthenticationState {
const CheckingLoginState();
}
class LogginOutState extends AuthenticationState {
const LogginOutState();
}
class AuthenticatedState extends AuthenticationState {
final String localUserId;