You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
581 B
23 lines
581 B
import React from "react";
|
|
import { useFormikContext } from "formik";
|
|
|
|
import TextInput from "../TextInput";
|
|
import ErrorMessage from "./ErrorMessage";
|
|
|
|
function AppFormField({ name, width, ...otherProps }) {
|
|
const { setFieldTouched, handleChange, errors, touched } = useFormikContext();
|
|
|
|
return (
|
|
<>
|
|
<TextInput
|
|
onBlur={() => setFieldTouched(name)}
|
|
onChangeText={handleChange(name)}
|
|
width={width}
|
|
{...otherProps}
|
|
/>
|
|
<ErrorMessage error={errors[name]} visible={touched[name]} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default AppFormField;
|