Damathryx
Damathryx

Reputation: 2828

Horizontal ScrollView with absolute position React Native

I'm trying to put a horizontal scrollview on top of this map but it doesn't scroll. What am I doing wrong? enter image description here

  <ScrollView
        style={{
          position: 'absolute',
          bottom: 50,
        }}
        horizontal
        contentContainerStyle={{
          width: screen.width,
          height: 120,
          alignItems: 'center',
          justifyContent: 'center',
        }}
      >

Upvotes: 0

Views: 2298

Answers (1)

Damathryx
Damathryx

Reputation: 2828

okay i solved this by not specifying the width in contentContainerStyle

Upvotes: 2

Related Questions