반응형
질문
I want to flip this replay material icon so that it can be used as forward.
Present Icon:
Required Result:
답변
이전:
이후:
import 'dart:math' as math; // import this
Transform(
alignment: Alignment.center,
transform: Matrix4.rotationY(math.pi),
child: Icon(Icons.rotate_left, size: 100,),
)
반응형
댓글