具有绝对位置的水平ScrollView React Native

时间:2016-09-14 01:34:53

标签: react-native flexbox

我试图将水平滚动视图放在此地图的顶部,但它不会滚动。我究竟做错了什么? enter image description here

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

1 个答案:

答案 0 :(得分:1)

好吧,我通过不在contentContainerStyle

中指定宽度来解决这个问题