mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
CAKE-264 | fixed fiat entering bug; added cryptoNumberPattern to send_view_model.dart
This commit is contained in:
parent
398f32c437
commit
f65a6c5ad4
1 changed files with 3 additions and 1 deletions
|
@ -36,13 +36,15 @@ import 'package:cake_wallet/generated/i18n.dart';
|
|||
|
||||
part 'send_view_model.g.dart';
|
||||
|
||||
const String cryptoNumberPattern = '0.0';
|
||||
|
||||
class SendViewModel = SendViewModelBase with _$SendViewModel;
|
||||
|
||||
abstract class SendViewModelBase with Store {
|
||||
SendViewModelBase(this._wallet, this._settingsStore, this._sendTemplateStore,
|
||||
this._fiatConversationStore, this.transactionDescriptionBox)
|
||||
: state = InitialExecutionState(),
|
||||
_cryptoNumberFormat = NumberFormat(),
|
||||
_cryptoNumberFormat = NumberFormat(cryptoNumberPattern),
|
||||
note = '',
|
||||
sendAll = false {
|
||||
final priority = _settingsStore.priority[_wallet.type];
|
||||
|
|
Loading…
Reference in a new issue