본문 바로가기
Flutter/Flutter FAQ

Flutter 플러터: 거울 효과를 얻기 위해 아이콘을 뒤집는 방법은 무엇인가요?, Flutter: How to flip an icon to get mirror effect?

by 베타코드 2023. 8. 28.
반응형

질문


I want to flip this replay material icon so that it can be used as forward.

Present Icon:

Preset Icon

Required Result:

enter image description here


답변


이전:

이미지 설명 입력


이후:

이미지 설명 입력

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

Transform(
  alignment: Alignment.center,
  transform: Matrix4.rotationY(math.pi),
  child: Icon(Icons.rotate_left, size: 100,),
)
반응형

댓글