cake_wallet/lib/store/app_store.dart

43 lines
1.2 KiB
Dart
Raw Normal View History

import 'package:cake_wallet/entities/transaction_info.dart';
2020-06-20 07:10:00 +00:00
import 'package:mobx/mobx.dart';
import 'package:cake_wallet/entities/balance.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/core/wallet_base.dart';
import 'package:cake_wallet/core/transaction_history.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
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>
wallet;
2020-07-06 20:09:03 +00:00
WalletListStore walletList;
SettingsStore settingsStore;
NodeListStore nodeListStore;
@action
void changeCurrentWallet(
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
TransactionInfo>
wallet) {
this.wallet?.close();
this.wallet = wallet;
}
2020-06-20 07:10:00 +00:00
}