Update README.md

This commit is contained in:
Nicco 2019-09-28 19:50:35 +02:00 committed by GitHub
parent 5588a0c043
commit a45d4940da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,8 @@
###### Links ###### Links
- [*See it in action HERE*](https://cupcakearmy.github.io/formhero/) - [*Live Web*](https://cupcakearmy.github.io/formhero/)
- [*Live React-Native*](https://snack.expo.io/@cupcakearmy/useform)
- [Examples](#-examples) - [Examples](#-examples)
- [Docs](#-documentation) - [Docs](#-documentation)
- Contructor - Contructor
@ -225,3 +226,68 @@ const validators = {
] ]
} }
``` ```
### Options
Sometimes it's practical to have some different default values when using for example react-native or some other framework where the default `value`, `onChange` and `(e)=> e.target.value` do not apply.
###### Example: React Native (Method 1 - Global options)
[Check the Expo Snack for a live preview](https://snack.expo.io/@cupcakearmy/useform)
```
import * as React from 'react';
import { Text, SafeAreaView, TextInput } from 'react-native';
import { useForm } from 'formhero';
const initial = {
username: 'i am all lowercase',
};
const validators = {};
const options = {
setter: 'value', // This is not stricly necessarry as 'value' would already be the default.
getter: 'onChangeText',
extractor: text => text.toLowerCase(),
};
export default () => {
const { form, auto } = useForm(initial, validators, options);
return (
<SafeAreaView>
<TextInput
style={{ height: 40, borderColor: 'gray', borderWidth: 2 }}
{...auto('username')}
/>
<Text>{form.username}</Text>
</SafeAreaView>
);
};
```
###### Example: React Native (Method 2 - Local overwrite)
```javascipt
// ...
export default () => {
const { form, auto } = useForm({
username: 'i am all lowercase',
});
return (
<SafeAreaView>
<TextInput
style={{ height: 40, borderColor: 'gray', borderWidth: 2 }}
{...auto('username', {
setter: 'value', // This is not stricly necessarry as 'value' would already be the default.
getter: 'onChangeText',
extractor: text => text.toLowerCase(),
})}
/>
<Text>{form.username}</Text>
</SafeAreaView>
);
};
```