mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
18 lines
764 B
Dart
18 lines
764 B
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
import 'package:cake_wallet/store/settings_store.dart';
|
||
|
import 'package:cake_wallet/store/app_store.dart';
|
||
|
import 'package:cake_wallet/entities/fiat_currency.dart';
|
||
|
|
||
|
ReactionDisposer _onCurrentFiatCurrencyChangeDisposer;
|
||
|
|
||
|
void startCurrentFiatChangeReaction(AppStore appStore, SettingsStore settingsStore) {
|
||
|
_onCurrentFiatCurrencyChangeDisposer?.reaction?.dispose();
|
||
|
_onCurrentFiatCurrencyChangeDisposer = reaction(
|
||
|
(_) => settingsStore.fiatCurrency, (FiatCurrency fiatCurrency) async {
|
||
|
final cryptoCurrency = appStore.wallet.currency;
|
||
|
// final price = await fiatConvertationService.getPrice(
|
||
|
// crypto: cryptoCurrency, fiat: fiatCurrency);
|
||
|
//
|
||
|
// fiatConvertationStore.setPrice(price);
|
||
|
});
|
||
|
}
|