A 2D affine transform matrix.
Support
Usage
Identity transform (no change)
Scale 2x
Skew (shear)
Translate
Notes
- The transform matrix is applied as a standard 2D affine transformation:
[a b tx; c d ty; 0 0 1]. - For simple scale, rotation, or offset operations, prefer
.scaleEffect(),.rotationEffect(), or.offset()for clarity. - The transform does not affect the component’s layout frame.