react-native-dropdown-picker
Advanced tools
Comparing version 3.1.7 to 3.1.8
{ | ||
"name": "react-native-dropdown-picker", | ||
"version": "3.1.7", | ||
"version": "3.1.8", | ||
"description": "A single or multiple, searchable item picker (dropdown) component for react native which supports both Android & iOS.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -347,9 +347,10 @@ import React from 'react'; | ||
<FlatList | ||
style={{width: '100%'}} | ||
data={items} | ||
renderItem={this._renderItem} | ||
keyExtractor={(item, index) => index.toString()} | ||
ListEmptyComponent={this._renderEmptyContainer}> | ||
</FlatList> | ||
<FlatList | ||
style={{width: '100%'}} | ||
data={items} | ||
renderItem={this._renderItem} | ||
keyExtractor={(item, index) => index.toString()} | ||
ListEmptyComponent={this._renderEmptyContainer} | ||
nestedScrollEnabled={true} | ||
/> | ||
</View> | ||
@@ -356,0 +357,0 @@ </View> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67266
505