바르고 뜨겁게
[Flutter] 정렬(alignment) 본문
사용법
child: Container(
alignment: Alignment(0.0, 0.0),
상수 이름으로도 사용 가능하다.
Alignment.bottomCenter
하단 중앙 Alignment(0.0, 1.0)
Alignment.bottomLeft
왼쪽 하단 모서리 Alignment(-1.0, 1.0)
Alignment.bottomRight
오른쪽 하단 Alignment(1.0, 1.0)
Alignment.center
수평 및 수직 중심 Alignment(0.0, 0.0)
Alignment.centerLeft
왼쪽 끝 Alignment(-1.0, 0.0)
Alignment.centerRight
오른쪽 끝 Alignment(1.0, 0.0)
Alignment.topCenter
중앙 상단 Alignment(0.0, -1.0)
Alignment.topLeft
왼쪽 상단 Alignment(-1.0, -1.0)
Alignment.topRight
오른쪽 상단 Alignment(1.0, -1.0)
'Flutter' 카테고리의 다른 글
[Flutter] TextField 응용 (0) | 2018.12.01 |
---|
Comments