Reputation: 31
I was using react-native-image-rotate to rotate images but its no longer mantained, any idea what could be a good alternative. ps: I am not using expo and I am using react-native v0.71.0
I tried react-native-photo-manipulator and other packages but the build fails everytime.
Upvotes: 3
Views: 7125
Reputation: 8300
Use transform style properties.
<Image
style={{width: 50, height: 50, transform: [{rotate: '45deg'}]}}
source={{
uri: 'https://reactnative.dev/img/tiny_logo.png',
}}
/>
Upvotes: 5