react-native-bidirectional-infinite-scroll icon indicating copy to clipboard operation
react-native-bidirectional-infinite-scroll copied to clipboard

📜 React Native - Bidirectional Infinite Smooth Scroll

Results 33 react-native-bidirectional-infinite-scroll issues
Sort by recently updated
recently updated
newest added

**Code:** Lib Version: 0.3.3 React Native: 0.61.5 ``` import { FlatList } from "react-native-bidirectional-infinite-scroll"; setFlatListRef(ref)} initialNumToRender={Math.min(formattedList.length, 45)} style={styles.flatList} data={data} keyExtractor={(item, index) => item.id} renderItem={renderCard} showsVerticalScrollIndicator={false} onMomentumScrollBegin={() => { onEndReachedCalledDuringMomentum =...

it throw error with horizontal=true does it support horizontal flatlist?

enhancement

I am getting the following error when working with this npm combination. **com.facebook.react.view.scroll.ReactHorizontalScrollView cannot be cast to com.facebook.react.views.scroll.ReactScrollView** I have a combination of vertical and horizontal flatlists which I was...

https://user-images.githubusercontent.com/5137377/123269304-70f2b480-d531-11eb-97b7-e787c1fe0945.mov React Native version: 0.59.9 ```js { const newMessages = await queryMoreMessages(10); const { data } = this.state; this.setState({ data: [].concat(data).concat(newMessages) }); }; loadMoreRecentMessages = async () => { const...

Fixes the following bugs https://github.com/GetStream/react-native-bidirectional-infinite-scroll/issues/15 https://github.com/GetStream/react-native-bidirectional-infinite-scroll/issues/28 https://github.com/GetStream/react-native-bidirectional-infinite-scroll/issues/25

Please add sticky header functionality for this Flatlist.

I cannot build the example project for iOS. The error from X-Code is `'atomic_notify_one' is unavailable` inside `react-native-bidirectional-infinite-scroll/example/ios/Pods/Headers/Private/Flipper-Folly/folly/synchronization/DistributedMutex-inl.h:1051:5:`

Is this repository actively maintained? Some PR are open some time and the last closed issue which was not a bug/request from the author is from march last year

Hi. I copied the example and ran it in my application. Everything looked ok. Then I just scroll up to the bottom of the list and immediately scroll down to...

The .finally() method is missing in [some versions of react-native](https://github.com/facebook/react-native/issues/19490), so I replaced it with .then(onFinally, onFinally).