How can I make text vertical (rotated 90 deg) in react native?

How can I make <Text /> vertical (rotated 90 deg) in react native? I want to have some text on the right side of the page along the edge of the screen.


Solution 1:

You can use a transformation.

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

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

Solution 2:

In style, use transform to rotate and element

style={{transform: [{ rotate: '180deg' }]}}

E.g.:

<View style={{transform: [{ rotate: '180deg' }]}} />