You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+114Lines changed: 114 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,15 @@ This repository is a set of high order components designed to help you take cont
7
7
**Features**
8
8
9
9
* Easily composable set of helpers
10
+
* Easily connect your [React Native Formik Standard Component](./doc/react-native-formik-standard-component.md) to the formik context
10
11
* Connects your React Native input to Formik with no boilerplate (See `makeReactNativeField`)
11
12
* Add a `type` prop on your TextInput to take care of the input options based on the type (See `withInputTypeProps`)
12
13
* Automatically focus the next input (See `withNextInputAutoFocus`)
13
14
14
15
**Table of contents**
15
16
16
17
*[Installation](#installation)
18
+
*[The Gist](#the-gist)
17
19
*[Advanced Example](#advanced-example)
18
20
*[Formatting inputs](#formatting-inputs)
19
21
*[API](#api)
@@ -33,6 +35,118 @@ This repository is a set of high order components designed to help you take cont
33
35
yarn add formik react-native-formik
34
36
```
35
37
38
+
## The Gist (with common use cases)
39
+
40
+
Once you designed `FocusableStandardRNFormikFieldComponent` and `StandardRNFormikFieldComponent` which respects the [React Native Formik Standard Component](./doc/react-native-formik-standard-component.md), here is an example to use those fields.
0 commit comments