react-native-infinite-flatlist-patch
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "react-native-infinite-flatlist-patch", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Patch for infinite scrolling with FlatList", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -17,3 +17,3 @@ #!/usr/bin/env node | ||
let patchDir = ''; | ||
if (minorVersion === 60) { | ||
if (minorVersion >= 60) { | ||
patchDir = '0.60.5'; | ||
@@ -20,0 +20,0 @@ } else if (minorVersion === 59) { |
@@ -0,1 +1,3 @@ | ||
[![NPM Version][npm-image]][npm-url] | ||
Infinite scrolling is one of the most used UX in App. In React Native, This is implemented using the `onEndReached` props of FlatList. | ||
@@ -77,1 +79,4 @@ | ||
`OnEndReached` is called twice when required and FlatList has 30 items. | ||
[npm-image]: https://img.shields.io/npm/v/react-native-infinite-flatlist-patch.svg?style=flat-square | ||
[npm-url]: https://npmjs.org/package/react-native-infinite-flatlist-patch |
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
479718
82