react-native-complete-flatlist
Advanced tools
Comparing version 1.1.26 to 1.1.27
{ | ||
"name": "react-native-complete-flatlist", | ||
"version": "1.1.26", | ||
"version": "1.1.27", | ||
"description": "A complete flatlist with search bar, highlighted search, pull to refresh, and etc is ready to use", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -53,5 +53,11 @@ # react-native-complete-flatlist | ||
cell = (data,index) => { | ||
const item = data.cleanData ? data.cleanData : data | ||
console.log(data.cleanData) | ||
console.log('data.cleanData will be not null if search bar is not empty. caution, data without search is not same like data with search due to implement the highlight component. data.cleanData is equal to data') | ||
console.log('this is index number : '+index) | ||
console.log(item+' this is original data') | ||
return <Text>{data.name}</Text>; | ||
@@ -58,0 +64,0 @@ } |
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
13971
104