mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
da6fd9a9ff
* Fix late initialization exception when using late with Mobx Fix index out of range exception in picker * Add haven account list class to configure file to be generated in haven.dart
40 lines
968 B
Dart
40 lines
968 B
Dart
import 'package:cake_wallet/di.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/entities/fiat_currency.dart';
|
|
|
|
part 'buy_amount_view_model.g.dart';
|
|
|
|
class BuyAmountViewModel = BuyAmountViewModelBase with _$BuyAmountViewModel;
|
|
|
|
abstract class BuyAmountViewModelBase with Store {
|
|
BuyAmountViewModelBase()
|
|
: amount = '',
|
|
fiatCurrency = FiatCurrency.usd {
|
|
int selectedIndex = FiatCurrency.currenciesAvailableToBuyWith
|
|
.indexOf(getIt.get<SettingsStore>().fiatCurrency);
|
|
|
|
if (selectedIndex != -1) {
|
|
fiatCurrency = FiatCurrency.currenciesAvailableToBuyWith[selectedIndex];
|
|
}
|
|
}
|
|
|
|
@observable
|
|
String amount;
|
|
|
|
@observable
|
|
FiatCurrency fiatCurrency;
|
|
|
|
@computed
|
|
double get doubleAmount {
|
|
double _amount;
|
|
|
|
try {
|
|
_amount = double.parse(amount.replaceAll(',', '.'));
|
|
} catch (_) {
|
|
_amount = 0.0;
|
|
}
|
|
|
|
return _amount;
|
|
}
|
|
}
|