React Native 什么是ScrollView中的有界高度?

rhfm7lfc  于 2023-04-07  发布在  React
关注(0)|答案(1)|浏览(142)

这是什么意思?(https://facebook.github.io/react-native/docs/scrollview
请记住,ScrollViews必须有一个有界的高度才能工作
谁必须有所谓的 * 有界高度 *?ScrollView本身?还是它的父代?还是它的子代?

<SafeAreaView style={{height: ...}}> <= this?
    <ScrollView style={{height: ...}}> <= this?
        <View style={{height: ...}}> <= this?
            ....
        </View>
    </ScrollView>
</SafeAreaView>
luaexgnf

luaexgnf1#

据我所知,它的高度的父ScrollView。

<SafeAreaView style={styles.container}>
  <ScrollView style={styles.scrollView}>
     ......
     ......
  </ScrollView>
</SafeAreaView>

const styles = StyleSheet.create({
     container: {
       flex: 1,
     },

相关问题