据我所知,反应本机样式表不支持最小宽度/最大宽度属性。
内部有一个视图和文本。自动宽度中的视图不会通过继承文本元素来调整大小。
如何解决这个问题,并使视图宽度自动设置使用文本宽度?
我的代码是:
<View style={{backgroundColor: '#000000'}}>
<Text style={{color: '#ffffff'}}>Sample text here</Text>
</View>
在通常的 HTML/CSS 中,我会意识到这一点:
<div style="background-color: #000; display: inline;">Sample text here</div>
注意: flex: 1在父视图中对我没有帮助。 文本显示为
"Sam"
"ple"
"Tex"
"t"