我有一个ScrollView,我希望根据需要增长到一定数量,但似乎总是maxHeight的大小: ScrollView style={{flex: 1, maxHeight: "50%"}}TextTop/Text/ScrollViewView style={{flex: 1}}TextBottom/Text/View 我想要的是顶视图非
<ScrollView style={{flex: 1, maxHeight: "50%"}}><Text>Top</Text></ScrollView> <View style={{flex: 1}}><Text>Bottom</Text></View>
我想要的是顶视图非常小.如果文本更长,它会根据需要变高,但永远不会高于屏幕的50%.那可能吗?
我必须做类似的事情,并找到解决方案:<View style={{maxHeight:"50%"}}> <ScrollView style={{flexGrow:0}}> <Text>Top</Text> </ScrollView> </View> <View style={{flex: 1}}><Text>Bottom</Text></View>