Android Horizontal list will jump to first item when scrolling to previous item.
<FlashList
data={[
'https://www.w3schools.com/html/pic_trulli.jpg',
'https://www.w3schools.com/html/img_girl.jpg',
'https://www.w3schools.com/html/img_chania.jpg',
'https://www.w3schools.com/w3images/mac.jpg',
'https://www.w3schools.com/html/workplace.jpg',
'https://www.w3schools.com/html/frenchfood.jpg',
'https://www.w3schools.com/html/frenchfood3.jpg',
'https://www.w3schools.com/html/picture_example.jpg',
]}
renderItem={({item}) => (
<View style={{width: width, height: 200}}>
<Image source={{uri: item}} style={{width: width, height: 200}} />
</View>
)}
keyExtractor={item => item}
horizontal={true}
pagingEnabled={true}
/>
Description
Android Horizontal list will jump to first item when scrolling to previous item.
Current behavior
screen-20260416-112619-1776309953763.mp4
Expected behavior
Android able to scroll normally
Reproduction
Platform
Environment
React Native info output:
FlashList version: 2.3.1
Checklist