Skip to content

Commit

Permalink
add missing min value check
Browse files Browse the repository at this point in the history
  • Loading branch information
Macacoazul01 committed Nov 7, 2024
1 parent 6f62a13 commit 31c1be1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/currency_textfield.dart
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,8 @@ class CurrencyTextFieldController extends TextEditingController {
}

_value = _getDoubleValueFor(string: clearText);


_checkMinValue();
_checkMaxValue();

_changeText();
Expand Down

0 comments on commit 31c1be1

Please sign in to comment.