react-native/docs/transforms.md

1.6 KiB

id title layout category permalink next previous
transforms Transforms docs APIs docs/transforms.html shadow-props layout-props

Props


Reference

Props

decomposedMatrix

Deprecated. Use the transform prop instead.

Type Required
DecomposedMatrixPropType No

transform

transform accepts an array of transformation objects. Each object specifies the property that will be transformed as the key, and the value to use in the transformation. Objects should not be combined. Use a single key/value pair per object.

The rotate transformations require a string so that the transform may be expressed in degrees (deg) or radians (rad). For example:

transform([{ rotateX: '45deg' }, { rotateZ: '0.785398rad' }])

The skew transformations require a string so that the transform may be expressed in degrees (deg). For example:

transform([{ skewX: '45deg' }])

Type Required
array of object: {perspective: number}, ,object: {rotate: string}, ,object: {rotateX: string}, ,object: {rotateY: string}, ,object: {rotateZ: string}, ,object: {scale: number}, ,object: {scaleX: number}, ,object: {scaleY: number}, ,object: {translateX: number}, ,object: {translateY: number}, ,object: {skewX: string}, ,object: {skewY: string} No

transformMatrix

Deprecated. Use the transform prop instead.

Type Required
TransformMatrixPropType No