Fix for search. (#1213)
This commit is contained in:
parent
dbe3fab980
commit
a3888faa7e
1 changed files with 6 additions and 6 deletions
|
|
@ -605,6 +605,12 @@ class Search extends PureComponent {
|
|||
backArrowSize={28}
|
||||
/>
|
||||
</View>
|
||||
<Autocomplete
|
||||
ref={this.attachAutocomplete}
|
||||
onChangeText={this.handleTextChanged}
|
||||
isSearch={true}
|
||||
value={value}
|
||||
/>
|
||||
<SectionList
|
||||
ref='list'
|
||||
style={style.sectionList}
|
||||
|
|
@ -614,12 +620,6 @@ class Search extends PureComponent {
|
|||
keyboardDismissMode='interactive'
|
||||
stickySectionHeadersEnabled={Platform.OS === 'ios'}
|
||||
/>
|
||||
<Autocomplete
|
||||
ref={this.attachAutocomplete}
|
||||
onChangeText={this.handleTextChanged}
|
||||
isSearch={true}
|
||||
value={value}
|
||||
/>
|
||||
{previewComponent}
|
||||
</View>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue