Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Last active February 4, 2023 12:39
Show Gist options
  • Save marcossevilla/d82148fc402ceac1aa679f2d53c80986 to your computer and use it in GitHub Desktop.
Save marcossevilla/d82148fc402ceac1aa679f2d53c80986 to your computer and use it in GitHub Desktop.
Check if text input value is number
bool isNumber(String value) {
if (value.isEmpty) return false;
final numb = num.tryParse(value);
return numb == null ? false : true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment