如何在React Native中动态更改高度视图?

时间:2018-11-13 16:40:52

标签: react-native view

我得到一个包含文本的简单视图:

            <View style = {styles.container}>                    
                <Text style = {styles.bla}>{blablabla}</Text>
            </View>  

 container:{
marginTop: 15,
marginRight: 15,
marginLeft: 15,
flexDirection:"row",
flex:1,
borderWidth: 1,
borderRadius: 2,
borderColor: '#ddd',
borderBottomWidth: 0,    
elevation: 2, 

},

文本行会有所不同,所以这就是为什么我希望视图根据其中的文本更改其高度。

我已经尝试过aspectRatio,它不起作用

1 个答案:

答案 0 :(得分:0)

我终于通过将我的视图换成另一个视图来弄清楚了。