mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-18 08:45:05 +00:00
Update MobX
Fix auth state not triggering onAuthState changed due to same value
This commit is contained in:
parent
9fdbda3d74
commit
44a9ad7487
2 changed files with 12 additions and 6 deletions
|
@ -4,7 +4,7 @@ part 'authentication_store.g.dart';
|
||||||
|
|
||||||
class AuthenticationStore = AuthenticationStoreBase with _$AuthenticationStore;
|
class AuthenticationStore = AuthenticationStoreBase with _$AuthenticationStore;
|
||||||
|
|
||||||
enum AuthenticationState { uninitialized, installed, allowed }
|
enum AuthenticationState { uninitialized, installed, allowed, _reset }
|
||||||
|
|
||||||
abstract class AuthenticationStoreBase with Store {
|
abstract class AuthenticationStoreBase with Store {
|
||||||
AuthenticationStoreBase() : state = AuthenticationState.uninitialized;
|
AuthenticationStoreBase() : state = AuthenticationState.uninitialized;
|
||||||
|
@ -13,8 +13,14 @@ abstract class AuthenticationStoreBase with Store {
|
||||||
AuthenticationState state;
|
AuthenticationState state;
|
||||||
|
|
||||||
@action
|
@action
|
||||||
void installed() => state = AuthenticationState.installed;
|
void installed() {
|
||||||
|
state = AuthenticationState._reset;
|
||||||
|
state = AuthenticationState.installed;
|
||||||
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
void allowed() => state = AuthenticationState.allowed;
|
void allowed() {
|
||||||
|
state = AuthenticationState._reset;
|
||||||
|
state = AuthenticationState.allowed;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,8 +22,8 @@ dependencies:
|
||||||
barcode_scan2: ^4.2.1
|
barcode_scan2: ^4.2.1
|
||||||
http: ^0.13.4
|
http: ^0.13.4
|
||||||
path_provider: ^2.0.11
|
path_provider: ^2.0.11
|
||||||
mobx: 2.0.7+4
|
mobx: ^2.1.4
|
||||||
flutter_mobx: ^2.0.6+1
|
flutter_mobx: ^2.0.6+5
|
||||||
flutter_slidable: ^2.0.0
|
flutter_slidable: ^2.0.0
|
||||||
share_plus: ^4.0.10
|
share_plus: ^4.0.10
|
||||||
# date_range_picker: ^1.0.6
|
# date_range_picker: ^1.0.6
|
||||||
|
@ -73,7 +73,7 @@ dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
build_runner: ^2.1.11
|
build_runner: ^2.1.11
|
||||||
mobx_codegen: ^2.0.7
|
mobx_codegen: ^2.1.1
|
||||||
build_resolvers: ^2.0.9
|
build_resolvers: ^2.0.9
|
||||||
hive_generator: ^1.1.3
|
hive_generator: ^1.1.3
|
||||||
flutter_launcher_icons: ^0.9.3
|
flutter_launcher_icons: ^0.9.3
|
||||||
|
|
Loading…
Reference in a new issue