Пожалуйста, используйте Flatlist вместо scrollview,
<FlatList
ref={(ref) => {
flatListRef = ref;
}}
horizontal={true}
pagingEnabled={true}
data={imageArray} //files
legacyImplementation={true}
showsHorizontalScrollIndicator={false}
renderItem={({ item, index }: any) =>
(
<View
style={{
width: width,
height: '100%',
justifyContent: 'center',
// alignItems: 'center',
backgroundColor: 'white'
}}
>
<Image source={{ uri: item.uri }} style={{ width: '100%',
height: item.height }}></Image>
<Text style={{
paddingTop: 14, paddingLeft: 20, fontFamily: 'Roboto-
Regular', fontSize: 16, color: 'rgb(74,74,74)'
}}>{description + " " + item.width + 'x' + item.height +
'.jpg'}</Text>
</View>
)}
/>```
please try this code, hope this works for you