728x90
반응형
사진이나 아이콘을 좌우반전 하는 방법이다.
import 'dart:math' as math;
Transform(
alignment: Alignment.center,
transform: Matrix4.rotationY(math.pi),
child: Icon(Icons.arrow_right, size: 100,),
)
728x90
반응형