如何在本机反应中使文本垂直(旋转90度)?


94

如何<Text />在本机中使垂直(旋转90度)?我想在页面右侧沿着屏幕边缘放置一些文本。

Answers:


209

您可以使用转换。

https://facebook.github.io/react-native/docs/transforms.html#proptypes

myStyle: {
    transform: [{ rotate: '90deg'}]
}

@JacobLauritzen它可以在React Native中工作!我已经测试过,并且可以在0.52.0版中使用。
shimatai

@shimatai太棒了!我是在回复先前的(现在已删除)评论,而不是解决方案。该解决方案效果很好。
Jacob Lauritzen

就我而言,文本包装在一个Touchable中。旋转后,可触摸区域似乎保持不变。任何想法?
chengsam

@chengsam Offhand我想您可能还需要旋转Touchable(或者如果它是孩子的​​话,也许旋转Touchable也会旋转文本)。
马修·麦考德
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.