我想准确地播放behavior。
滚动时,ScrollView中的Tab
组件应保留在导航栏下,问题是将绝对位置应用于与ScrollView相关的选项卡。
这是结构:
<ScrollView
style={styles.scrollView}
onScroll={this.onScroll}
scrollEventThrottle={16}>
<Image source={....} />
<Tab>...</Tab>
<View style={[styles.content, props.scrollableViewStyle]}>
// lorem ipsum..
</View>
</ScrollView>
图像:
如何在React Native中播放?