@astrocoders/rn-redux-form-field

A Field wrapper using Native Base components


Keywords
native-base, react-native, redux-form
License
MIT
Install
npm install @astrocoders/rn-redux-form-field@1.0.0

Documentation

@astrocoders/rn-redux-form-field

A Field wrapper using Native Base components

Install

yarn add @astrocoders/rn-redux-form-field

Usage

function SomeForm({...}){
  return (
    <Form>
      <Field
        name="email"
        keyboardType="email"
        labelStyle={{fontSize: 16}}
      />
    </Form>
  )
}

export default compose(
  reduxForm({
    form: 'someForm'
  })
)(SomeForm)