Formik Validation for Native Base Input
问题 I am using native base's input field and am trying to validate it using Formik and Yup. However, no validation is happening so far. It doesn't show any errors even if I type alphabets. This code works (without Formik): type EmailRegistrationProps = {}; interface FormValues { friendEmail: string; } type AddFriendEmailPageProps = { toggleShowPage: () => void; showAddFriendEmailPage: boolean; }; export const AddFriendEmailPage: React.FunctionComponent<AddFriendEmailPageProps> = ({ toggleShowPage