Use this file to discover all available pages before exploring further.
These modifiers visually transform a component without changing its layout frame — surrounding components keep their original space. scaleEffect resizes uniformly or per-axis, rotationEffect rotates by a degree value around an anchor point, and transformEffect applies an arbitrary 2D affine matrix when you need scale, shear, and translate together.For simple position changes that don’t affect layout, see offset.
The point to scale from. Defaults to "center". See UnitPoint.
Scaling doesn’t affect the component’s layout frame. The component’s original space is preserved, and the scaled content may overlap neighboring components.Uniform scale
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 doesn’t affect the component’s layout frame.Identity transform (no change)