Android extension channel list to display all items (#2426)

This commit is contained in:
Elias Nahum 2018-12-07 01:12:18 -03:00
parent 1c9cf210c8
commit 106557d0fa
No known key found for this signature in database
GPG key ID: E038DB71E0B61702

View file

@ -133,9 +133,10 @@ export default class ExtensionTeam extends PureComponent {
}
return (
<View>
<React.Fragment>
{this.renderSearchBar(styles)}
<SectionList
style={styles.flex}
sections={sections}
ItemSeparatorComponent={this.renderItemSeparator}
renderItem={this.renderItem}
@ -149,7 +150,7 @@ export default class ExtensionTeam extends PureComponent {
scrollEventThrottle={100}
windowSize={5}
/>
</View>
</React.Fragment>
);
};