Onboarding completato, ora super rapido e top Reviewed-on: http://catelliub.zapto.org:3000/brontomark/flux/pulls/7 Co-authored-by: Mark M2 Macbook <marco@catelli.it> Co-committed-by: Mark M2 Macbook <marco@catelli.it>
7 lines
144 B
Dart
7 lines
144 B
Dart
String? notEmptyValidator(String? value) {
|
|
if (value == null || value.trim().isEmpty) {
|
|
return 'Campo obbligatorio';
|
|
}
|
|
return null;
|
|
}
|