flipY property

Widget get flipY

Flips the widget vertically.

Implementation

Widget get flipY => Transform(
  alignment: Alignment.center,
  transform: Matrix4.identity()..scaleByDouble(1.0, -1.0, 1.0, 1.0),
  child: this,
);