1. 배경
이미지 위에서 텍스트들을 구현해야 할 일이 생겨
Stack을 사용하였는데
맨 위 중간(center_horizontal)에 제목을 구현해야했다.
Stack의 children 안에서 어떤 Widget을 사용해야
Stack 안에서 center-horizontal을 구현할 수 있을까
2. 개념
Align:
https://www.youtube.com/watch?v=g2E7yl3MwMk
3. 해결
Stack(
.
.
.,
Align(
alignment: Alignment.topcenter,
child: Container(
margin: ...,
child: [위젯]
)
)
)
이렇게
Stack안에서의
center_horizontal를 구현할 수 있다.
반응형
'인포테인먼트 - development > flutter' 카테고리의 다른 글
[flutter] Flexible (0) | 2020.06.18 |
---|---|
[flutter] Future, 그리고 async await (0) | 2020.06.18 |
[flutter] CupertinoButton 사이즈 조정하기 (0) | 2020.06.16 |
[flutter-error] 에러 [SEVERE] Conflicting outputs were detected and the build is unable to prompt ... 해결 (0) | 2020.06.14 |
[flutter] 에러명: "No file or variants found for asset: ~" 해결 (0) | 2020.06.03 |
댓글