react-redux-form icon indicating copy to clipboard operation
react-redux-form copied to clipboard

When the floatingLabel property is specified for the NativeBase Item component

Open kspotfujita opened this issue 7 years ago • 0 comments

"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>

kspotfujita avatar May 11 '18 05:05 kspotfujita