Component for notify user about errors.
ErrorTip should be wrapped into FormGroup
ErrorTip contains Text component from react-native lib. All props for Text are valid for ErrorTip.
If error not exist, ErrorTip will not render Text
<Form
onSubmit={async (values) => await someRequest(values)}
validator={new SchemaValidator(ExampleSchema)}
errorParser={(error) => myCustomParser(error)}
>
<FormGroup attribute="surname" >
<ErrorTip />
</FormGroup>
</Form>