change from Fragment to View and add disableFullscreenUI

This commit is contained in:
Estevão Lucas 2018-11-22 22:17:36 -05:00
parent 2fe9e71120
commit d0d0eba29d

View File

@ -116,9 +116,10 @@ export default class StoryListView extends Component {
const { data } = this.state;
return (
<React.Fragment>
<View style={style.flex}>
<TextInput
clearButtonMode="while-editing"
disableFullscreenUI
onChangeText={this.handleChangeSearchText}
placeholder="Filter"
returnKeyType="search"
@ -142,7 +143,7 @@ export default class StoryListView extends Component {
sections={data}
stickySectionHeadersEnabled={false}
/>
</React.Fragment>
</View>
);
}
}