We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
change var parts = name.split(' '); to var parts = name.trim().split(' '); would solve it in input_text.dart
var parts = name.split(' ');
var parts = name.trim().split(' ');
The text was updated successfully, but these errors were encountered:
This doesn't only happen when name ends in space. It happens when there's leading, trailing, or consecutive whitespace.
Sorry, something went wrong.
No branches or pull requests
change
var parts = name.split(' ');
tovar parts = name.trim().split(' ');
would solve itin input_text.dart
The text was updated successfully, but these errors were encountered: