Firas Bouadila
Firas Bouadila

Reputation: 31

How to rotate image in react native

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

Answers (1)

user18309290
user18309290

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

Related Questions