mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
32 lines
966 B
Dart
32 lines
966 B
Dart
import 'package:cake_wallet/core/validator.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
class AmountValidator extends TextValidator {
|
|
AmountValidator({WalletType type, bool isAutovalidate = false})
|
|
: super(
|
|
errorMessage: S.current.error_text_amount,
|
|
pattern: _pattern(type),
|
|
isAutovalidate: isAutovalidate,
|
|
minLength: 0,
|
|
maxLength: 0);
|
|
|
|
static String _pattern(WalletType type) {
|
|
switch (type) {
|
|
case WalletType.monero:
|
|
return '^([0-9]+([.\,][0-9]{0,12})?|[.\,][0-9]{1,12})\$';
|
|
case WalletType.bitcoin:
|
|
return '^([0-9]+([.\,][0-9]{0,8})?|[.\,][0-9]{1,8})\$';
|
|
default:
|
|
return '';
|
|
}
|
|
}
|
|
}
|
|
|
|
class AllAmountValidator extends TextValidator {
|
|
AllAmountValidator() : super(
|
|
errorMessage: S.current.error_text_amount,
|
|
pattern: S.current.all,
|
|
minLength: 0,
|
|
maxLength: 0);
|
|
}
|