Answers for "flutter mirror-inverted widget"

0

flutter mirror-inverted widget

import 'dart:math' as math; // import this

Transform( //Wrap your widget with the Transform widget
  alignment: Alignment.center, //Default is left
  transform: Matrix4.rotationY(math.pi), //Mirror Widget
  child: Icon(Icons.rotate_left, size: 100,), //Your widget
)
Posted by: Guest on November-19-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language