cake_wallet/lib/store/app_store.dart

37 lines
914 B
Dart
Raw Normal View History

2021-01-11 17:15:27 +00:00
import 'package:cake_wallet/entities/balance.dart';
2020-06-20 07:10:00 +00:00
import 'package:mobx/mobx.dart';
import 'package:cake_wallet/core/wallet_base.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/store/wallet_list_store.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/store/authentication_store.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/store/settings_store.dart';
import 'package:cake_wallet/store/node_list_store.dart';
2020-06-20 07:10:00 +00:00
part 'app_store.g.dart';
class AppStore = AppStoreBase with _$AppStore;
abstract class AppStoreBase with Store {
2020-07-06 20:09:03 +00:00
AppStoreBase(
{this.authenticationStore,
this.walletList,
this.settingsStore,
this.nodeListStore});
2020-06-20 07:10:00 +00:00
AuthenticationStore authenticationStore;
@observable
2021-01-11 17:15:27 +00:00
WalletBase<Balance> wallet;
2020-07-06 20:09:03 +00:00
WalletListStore walletList;
SettingsStore settingsStore;
NodeListStore nodeListStore;
@action
void changeCurrentWallet(WalletBase wallet) {
this.wallet?.close();
this.wallet = wallet;
}
2020-06-20 07:10:00 +00:00
}