react-native-infinite-looping-scroll
react-native-infinite-looping-scroll copied to clipboard
A react native component that lets you scroll infinitely in both directions by repeating the same items. π±
React Native v0.64.3 on Expo using this code: ```ts import { Modal, StyleSheet, Text, View } from 'react-native'; import { CustomButton } from 'src/components/Buttons/CustomButton'; import InfiniteScroll from 'react-native-infinite-looping-scroll'; interface Params...
React js
I'm looking for something similar for react js (gatsby), do you know of anything?
Not able to scroll horizontally when horizontal is set to true. ` ( {item.key} )} keyExtractor={(item, index) => item.key + index} horizontal showsHorizontalScrollIndicator={false} legacyImplementation={false} />`
The component for now only works for vertical scrolling, so add the implementation for horizontal scroll and test it.
The infinite scroll doesn't work when the content is less than the screen size, i.e. when the scroll bar doesn't appear. So make it work even when the content is...
I have tried creating my own implementation for producing an infinite looping scroll effect using FlatList, but it is not too smooth yet, so if anyone has an idea for...
Improve the documentation for better readability.