I think I found a bug related to the use of <Item floatingLabel> in conjunction with <Icon/>
node 10.16.2
npm 6.10.3
react 16.8.3
react-native: 0.59.8
native-base 2.13.4
expo 34.0.3
The app to be rendered.
Rendering is hanging.
This is a simple application created with expo. I only changed the main app. To reproduce the problem change const 'float' to true.
import React from 'react';
import {Root, Container, Header, Form, Label, Item, Input, Text, Icon} from 'native-base';
const float = false;
export default function App() {
return (
<Root>
<Header/>
<Container>
<Text>Any text</Text>
<Item floatingLabel={float}>
<Label>Field label</Label>
<Input/>
<Icon type='Ionicons' name='md-eye'/>
</Item>
</Container>
</Root>
);
}
Yes.
I tried to downgrade native-base to 2.13.0 but no success. The problem started after update from 2.12.1.
confirmed. same behavior. happens after 2.12.1
Just tested the new release. Problem solved. Thanks for the great work.
Most helpful comment
Just tested the new release. Problem solved. Thanks for the great work.