728x90
반응형
flutter에서 수직선, 수평선 그리는 방법입니다.
수평선
Divider(
thickness: 1,
color: Colors.grey,
)
또는
Container(
height: 1,
width: double.maxFinite,
color: Colors.grey,
)
수직선
VerticalDivider(
thickness: 1,
color: Colors.grey,
)
또는
Container(
width: 1,
height: double.maxFinite,
color: Colors.grey,
)
728x90
반응형
'mobile > flutter' 카테고리의 다른 글
[Flutter] 플루터에 다국어(i18n) 적용 (use intl package) (0) | 2021.03.04 |
---|---|
[flutter] Scaffold.of() called with a context that does not contain a Scaffold. 해결방법과 Copy to clipboard on tap (0) | 2021.02.06 |
[flutter] Unexpected key assets ((String)) under font. (0) | 2020.12.01 |
[flutter] 앱에서 네트워크 연결 확인 : connectivity (0) | 2020.10.16 |
Flutter 개발 환경 세팅 (flutter doctor) (0) | 2020.10.09 |
댓글