버튼 내부의 아이콘은 왼쪽 정렬, 텍스트는 가운데 정렬을 하고 싶을때가 있다.
이때는 Row 대신 Stack을 사용한다.
Stack(
alignment: Alignment.center,
children: [
Align(
alignment: Alignment.centerLeft,
child: icon,
),
Text(
text,
textAlign: TextAlign.center,
),
],
),
728x90
'Flutter' 카테고리의 다른 글
[Flutter] constrain box size (0) | 2023.06.10 |
---|---|
[Flutter] collection if with several widgets (0) | 2023.06.10 |
[Flutter] FractionallySizedBox (0) | 2023.06.07 |
[Flutter / Dart] 기초 지식 (0) | 2023.06.05 |
[Flutter / GetX] Exception has occurred._CastError (Null check operator used on a null value) (0) | 2023.05.30 |