0.1.1 • Published 6 years ago

react-native-formik-components v0.1.1

Weekly downloads
5
License
ISC
Repository
github
Last release
6 years ago

react-native-formik-components

Formik helper components to reduce boilerplate in React Native

Install

yarn add react-native-formik-components formik

Example

import { Formik } from 'formik';
import { Input, Form, DebugForm } from 'react-native-formik-components';

function MyForm() {
  return (
    <Formik
      initialValues={{ email: '', firstName: '', password: '' }}
      onSubmit={console.log}
    >
      <Form>
        {formik => {
          return (
            <>
              <Input name="email" type="email" placeholder="Email" />
              <Input name="firstName" type="name" placeholder="Name" />
              <Input name="password" type="password" placeholder="Password" />
              <DebugForm />
            </>
          );
        }}
      </Form>
    </Formik>
  );
}
0.1.1

6 years ago

0.1.0

6 years ago