CAKE-264 | fixed fiat entering bug; added cryptoNumberPattern to send_view_model.dart

wownero
OleksandrSobol 3 years ago
parent 398f32c437
commit f65a6c5ad4

@ -36,13 +36,15 @@ import 'package:cake_wallet/generated/i18n.dart';
part 'send_view_model.g.dart'; part 'send_view_model.g.dart';
const String cryptoNumberPattern = '0.0';
class SendViewModel = SendViewModelBase with _$SendViewModel; class SendViewModel = SendViewModelBase with _$SendViewModel;
abstract class SendViewModelBase with Store { abstract class SendViewModelBase with Store {
SendViewModelBase(this._wallet, this._settingsStore, this._sendTemplateStore, SendViewModelBase(this._wallet, this._settingsStore, this._sendTemplateStore,
this._fiatConversationStore, this.transactionDescriptionBox) this._fiatConversationStore, this.transactionDescriptionBox)
: state = InitialExecutionState(), : state = InitialExecutionState(),
_cryptoNumberFormat = NumberFormat(), _cryptoNumberFormat = NumberFormat(cryptoNumberPattern),
note = '', note = '',
sendAll = false { sendAll = false {
final priority = _settingsStore.priority[_wallet.type]; final priority = _settingsStore.priority[_wallet.type];

Loading…
Cancel
Save