Steps to Reproduce
Just enter your name with spaces like 'Abdullah Ahmed'
It will show you a validation message that name should only contain alphabetic character
Space should be accepted
So You have to just change Regex:
You can find that text field in IntroScreen [lib/presentation/screen/intro_screen.dart].
Also, change the message of validation:
name should be less than 15 characters to Name should be less than 15 characters.
name should only contain alphabetic characters to Use alphabets only, no symbols allowed.
You can find the validation message in the form_validator file [li/presentation/shared/form_validator.dart]
Function Name: nameValidator.
Steps to Reproduce Just enter your name with spaces like 'Abdullah Ahmed' It will show you a validation message that
name should only contain alphabetic character
Space should be accepted
So You have to just change Regex: You can find that text field in IntroScreen [
lib/presentation/screen/intro_screen.dart
].Also, change the message of validation:
name should be less than 15 characters
toName should be less than 15 characters
.name should only contain alphabetic characters
toUse alphabets only, no symbols allowed
.You can find the validation message in the form_validator file [
li/presentation/shared/form_validator.dart
] Function Name:nameValidator
.