Last active
May 28, 2020 22:39
-
-
Save singh100ful/25a924d4060a776c708775a9e2551253 to your computer and use it in GitHub Desktop.
React Native Validation Errors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {formProps.errors.email && ( | |
| <Text | |
| style={{ | |
| fontSize: 16, | |
| color: 'red', | |
| paddingHorizontal: 10, | |
| }}> | |
| {formProps.errors.email} | |
| </Text> | |
| )} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment