I want to use react-native-animatable in FlatList that each item in FlatList has different delay in sequence but all items have the same delay.
keyExtractor={(item, index) => item.id}
data={this.props.items}
ListFooterComponent={this.renderFooter}
onEndReached={this.handleLoadMore}
onEndReachedThreshold={0.5}
renderItem={({item, index}) => (
delay={(index+1)*1000}
duration={3000}
animation="slideInLeft">
)}
/>
Yup. same as me, the animation come out in batches. as a work around, what i did is to put a limit to the index to less than 10 (or any number you think is sufficient). then the animation come out correctly. but not as clean as staggered animation from rn.
Yes, same issue here. How to fix it?
Same here. But i only see this problem in release mode, development is working fine. That's very weird.
Most helpful comment
Yes, same issue here. How to fix it?