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
|
|
|
|
WalletBase wallet;
|
2020-07-06 20:09:03 +00:00
|
|
|
|
|
|
|
WalletListStore walletList;
|
|
|
|
|
|
|
|
SettingsStore settingsStore;
|
|
|
|
|
|
|
|
NodeListStore nodeListStore;
|
2020-06-20 07:10:00 +00:00
|
|
|
}
|