React Native StyleSheet.create 传递道具?
React Native StyleSheet.create pass props?
是否可以在样式表顶部传递道具?
如果不是,最好的替代品是什么?
如果我有一个变量作为样式,我更喜欢将其用作状态,因此
在样式
中使用它
赞:
<p style={{height:this.state.height}}>complicated </p>
你可以同时使用两者
<p style={styles.paragraph,{height:this.state.height}}></p>
是否可以在样式表顶部传递道具? 如果不是,最好的替代品是什么?
如果我有一个变量作为样式,我更喜欢将其用作状态,因此 在样式
中使用它赞:
<p style={{height:this.state.height}}>complicated </p>
你可以同时使用两者
<p style={styles.paragraph,{height:this.state.height}}></p>