Fix format

This commit is contained in:
vaelio 2021-03-02 01:05:51 +01:00
commit a46c5a3025

View file

@ -315,7 +315,7 @@ class _SettingsState extends State<Settings> {
textFields: [ textFields: [
DialogTextField( DialogTextField(
validator: (text) { validator: (text) {
if (text.length == 0 || (text.length == 4 && int.tryParse(text) >= 0)) { if (text.isEmpty || (text.length == 4 && int.tryParse(text) >= 0)) {
return null; return null;
} }
return L10n.of(context).pleaseEnter4Digits; return L10n.of(context).pleaseEnter4Digits;