0.3.19 • Published 4 years ago

material-ui-formik-fields v0.3.19

Weekly downloads
217
License
Apache-2.0
Repository
github
Last release
4 years ago

Material-ui Formik Fields

This project offers Material-ui input fields that works with Formik

Why a package was created

As I use Material-ui in my projects, I decided to create this package that offers Material-ui fields as a simple components that works with Formik and manages Formik's methods and values.

What problem the package solves

Using this package no needs to configure Formik methods on every input.

How the package solves the problem

It manages Formik's methods on every input.

All valid configurations/props of the package

Components

TextField

import {TextField} from 'material-ui-formik-fields'

<Formik
    initialValues={{}}
    onSubmit={() => {}}
    >
    <Form>
        <TextField
            id="email"
            name="email"
            label="Email"
        />
    </Form>
</Formik>

For more information check the TextField Documentation

Demos of the package in action

Check the Storybook page