Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

form_store localizations #109

Open
hattatyazilim opened this issue Jul 17, 2021 · 0 comments
Open

form_store localizations #109

hattatyazilim opened this issue Jul 17, 2021 · 0 comments

Comments

@hattatyazilim
Copy link

form_store.dart

void validateUserEmail(String value) {
if (value.isEmpty) {
formErrorStore.userEmail = "Email cant be empty";
} else if (!isEmail(value)) {
formErrorStore.userEmail = 'Lütfen geçerli bir email giriniz';
} else {
formErrorStore.userEmail = null;
}
}
Iam use localizations AppLocalizations.of(context).translate('email_not_empty') instead of "Email cant be empty". But context error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant