react-native-infinite-scrolling
v2.0.0
Published
A react native package for infinite scrolling of list
Downloads
229
Maintainers
Readme
A react native package developed to implement infinite scrolling in any react-native app.
Install via npm
npm i react-native-infinite-scrolling
Import the InfiniteScroll component from react-native-infinite-scrolling:
import InfiniteScroll from 'react-native-infinite-scrolling'
This component accepts 3 parameters / props:
- data: It contains data in form of an array which will be mapped.
- renderData: It accepts a function which returns the mapped data. It accepts a single parameter which indicates a single element of the data array.
- loadMore: It also accepts a function which will load more data once the bottom of the page is reached while scrolling.
import InfiniteScroll from 'react-native-infinite-scrolling'
const TestingApplication = () => {
const [data, setData] = useState([])
useEffect(() => {
loadMore()
},[])
const renderData = ({ item }) => {
return(
<View>
<Text> {item.title} </Text>
<Text> {item.id} </Text>
</View>
)
}
const loadMore = () => {
axios.get('https://jsonplaceholder.typicode.com/todos?_limit=10')
.then((response) => {
let updatedData = data.concat(response.data)
setData(updatedData)
})
.catch((error) => console.log('error =', error))
}
return(
<InfiniteScroll
renderData = {renderData}
data = { data }
loadMore = { loadMore }
/>
)
}
export default TestingApplication
- React
- react-native
- Hooks