Core stuff

M committed May 25, 2020 at 16:06 UTC 8c6b99da4284b25fbdad2ac5ddc293c251db9472
3 files changed +44
lib/core/app_store.dart new
+12
@@ -0,0 +1,12 @@
1 +import 'package:mobx/mobx.dart';
2 +
3 +part 'app_store.g.dart';
4 +
5 +class AppStore = AppStoreBase with _$AppStore;
6 +
7 +abstract class AppStoreBase with Store {
8 + // Sign Up
9 + // Auth
10 + // Wallet
11 + // Settings
12 +}
\ No newline at end of file
lib/core/monero_wallet_store.dart new
+20
@@ -0,0 +1,20 @@
1 +import 'dart:async';
2 +import 'package:cake_wallet/src/domain/common/node.dart';
3 +import 'package:cake_wallet/src/domain/common/wallet_type.dart';
4 +import 'package:mobx/mobx.dart';
5 +import 'package:cake_wallet/src/domain/common/wallet.dart';
6 +import 'package:cake_wallet/src/domain/monero/account.dart';
7 +import 'package:cake_wallet/src/domain/monero/monero_wallet.dart';
8 +import 'package:cake_wallet/src/domain/monero/subaddress.dart';
9 +import 'package:cake_wallet/src/domain/services/wallet_service.dart';
10 +import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
11 +import 'package:cake_wallet/src/stores/settings/settings_store.dart';
12 +import 'package:cake_wallet/generated/i18n.dart';
13 +
14 +part 'monero_wallet_store.g.dart';
15 +
16 +class MoneroWalletStore = MoneroWalletStoreBase with _$MoneroWalletStore;
17 +
18 +abstract class MoneroWalletStoreBase with Store {
19 +
20 +}
\ No newline at end of file
lib/core/sign_up_store.dart new
+12
@@ -0,0 +1,12 @@
1 +import 'package:flutter/foundation.dart';
2 +import 'package:mobx/mobx.dart';
3 +import 'package:cake_wallet/src/domain/common/wallet_type.dart';
4 +
5 +part 'sign_up_store.g.dart';
6 +
7 +class SignUpStore = SignUpStoreBase with _$SignUpStore;
8 +
9 +
10 +abstract class SignUpStoreBase with Store {
11 +
12 +}
\ No newline at end of file