我正试图用左边的时代创建一个日视图,并且是一个顶尖的人物.目前我可以得到左或顶部标题坚持,但不是两者.
你如何获得2个粘性标题?
我的渲染看起来像这样:
<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>
您可以尝试使用flexDirection将顶级ScrollView更改为View / FlexBox作为“列”吗?这将导致内部ScrollViews适应窗口大小.
原文链接:https://www.f2er.com/react/301130.html