Reputation: 2828
I'm trying to put a horizontal scrollview on top of this map but it doesn't scroll. What am I doing wrong?
<ScrollView
style={{
position: 'absolute',
bottom: 50,
}}
horizontal
contentContainerStyle={{
width: screen.width,
height: 120,
alignItems: 'center',
justifyContent: 'center',
}}
>
Upvotes: 0
Views: 2298
Reputation: 2828
okay i solved this by not specifying the width in contentContainerStyle
Upvotes: 2