We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ffb73 commit f6674c8Copy full SHA for f6674c8
src/image/index.ios.ts
@@ -458,7 +458,7 @@ export class Img extends ImageBase {
458
transformers.push(NSImageRoundAsCircleTransformer.transformer());
459
}
460
if (this.imageRotation !== 0 && !isNaN(this.imageRotation)) {
461
- transformers.push(SDImageRotationTransformer.transformerWithAngleFitSize(this.imageRotation *(Math.PI/180), true));
+ transformers.push(SDImageRotationTransformer.transformerWithAngleFitSize(-this.imageRotation *(Math.PI/180), true));
462
463
if (this.roundBottomLeftRadius || this.roundBottomRightRadius || this.roundTopLeftRadius || this.roundTopRightRadius) {
464
transformers.push(
0 commit comments