react-native-optimized-flatlist
react-native-optimized-flatlist copied to clipboard
Optimization for complex and slow React Native FlatLists
Recycling items doesn't take effect as soon as the screen is loaded? 
## 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...
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...
after filter array of data . filter item sometimes disappears , sometime show in the middle and sometimes displayed after write text more than one  
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...