I want to flip this replay material icon so that it can be used as forward.
Present Icon:
Required Result:
With Flutter 3.10.2 ( not sure if it was available before ), you can flip as below :
Transform.flip(
flipX: true,
child: const Icon(Icons.rotate_right),
)
Similarly, to flip vertically, use the flipY
property