react-redux-form
react-redux-form copied to clipboard
When the floatingLabel property is specified for the NativeBase Item component
"native-base": "2.4.3",
"react": "16.3.2",
"react-native": "0.55.4",
"react-redux-form": "1.16.8",
It does not work properly when floatingLabel property is specified for Item component. It works without problems when it is not floatingLabel property.
This may be a problem on the NativeBase side.
<Form model="user" onSubmit={(data)=>console.log(data)} >
<Item floatingtLabel>
<Label>Name</Label>
<Control.TextInput model=".name" component = { Input } />
</Item>
<Button onPress={()=>{dispach(actions.submit('user'))}} >Submit</Button>
</Form>