React Native:2个滚动视图,带有2个粘性标题

时间:2016-04-16 19:53:35

标签: scrollview react-native

我正在尝试创建左侧有时间的日视图,以及人物的顶部标题。目前我可以得到左边或顶部标题,但不是两个。

如何获得2个粘性标题?

Two Scroll Views each with a header

我的渲染看起来像这样:

  <ScrollView style={{height: 600}}>
    <ScrollView horizontal={true}>
      <View style={styles.column}>
        <View style={{ flex: 1, flexDirection: 'row', width}}>
          {header}
        </View>

        <View style={styles.row}>
          <View style={[styles.container, { width, marginLeft: 40 }]}>
            {this.generateRows()}
          </View>
        </View>

      </View>
    </ScrollView>
    <View style={{backgroundColor: 'white', position: 'absolute', top: 0, bottom: 0, left: 0, }}>
      <View style={{ flex: 1, flexDirection: 'row'}}>
        <View style={styles.row}>
          <Text></Text>
        </View>
      </View>
      <View style={{height: 1000, width: 40 }}>
        {this.generateRowLabels()}
      </View>
    </View>
  </ScrollView>

1 个答案:

答案 0 :(得分:1)

您可以尝试使用flexDirection将顶级ScrollView更改为View / FlexBox作为&#39;列吗?这将导致内部ScrollViews适合窗口大小。