react-native-optimized-flatlist icon indicating copy to clipboard operation
react-native-optimized-flatlist copied to clipboard

Optimization for complex and slow React Native FlatLists

Results 22 react-native-optimized-flatlist issues
Sort by recently updated
recently updated
newest added

Recycling items doesn't take effect as soon as the screen is loaded? ![RN](https://user-images.githubusercontent.com/95352460/162381924-320c238d-f8e7-4800-abea-d6f7b25d0831.jpeg)

## The devDependency [semantic-release](https://github.com/semantic-release/semantic-release) was updated from `15.14.0` to `16.0.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

I am using stickyHeaderIndices as array to have multiple header sticky. This works with the normal Flatlist, but not with the react-native-optimized-flatlist. When I try to use it with react-native-optimized-flatlist,...

## The devDependency [cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) was updated from `2.1.0` to `3.0.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

after filter array of data . filter item sometimes disappears , sometime show in the middle and sometimes displayed after write text more than one ![image](https://user-images.githubusercontent.com/15837332/67927595-a9f24e80-fbc1-11e9-93d3-521a82bdd8ee.png) ![image](https://user-images.githubusercontent.com/15837332/67927538-86c79f00-fbc1-11e9-83c9-fa43321a51cc.png)

onViewableItemsChanged working fine in FlatList but due to many performance issues and memory issues, I have used react-native-optimized-flatlist. But onViewableItemsChanged is not working in react-native-optimized-flatlist. Any idea ? https://stackoverflow.com/questions/59999214/onviewableitemschanged-not-working-in-optimizedflatlist

``` (this._listRef = ref)} onContentSizeChange={() => { this._listRef.scrollToEnd(); }} style={styles.list} data={this.state.chat} keyExtractor={(item, index) => index.toString()} renderItem={message => { const item = message.item; let inMessage = item.type === 'in'; let itemStyle...

I tried this and seems it fixed some of the FlatList issues but I noticed when I scroll back (top or bottom) (specially when I'm using images) it takes some...