플러터 마진은 가히 혁명적인것 같다. 너무 간편하다.
margin:
EdgeInsets.all(숫자) 은 모든 방향
EdgeInsets.symmetric(vertical: 숫자 , horizontal: 숫자)은 상하 좌우
EdgeInsets.fromLTRB(left, top, right, bottom) 은 각자 줄수있고
EdgeInsets.only(left: 숫자)는 방향지정해서 하나.
padding도 EdgeInsets 같은 방법으로 이용.
다만 margin은 outside of the widget이고
padding은 inside of the widget.
와 진짜 안드로이드스튜디오로 그냥 코틀린 레이아웃 지정해줬을때는
레이아웃, 마진, 패딩 하나하나 복잡하게 하는 요소중 하나였는데
플러터.. 마음에 든다
+
플러터 레이아웃 모음 (layout cheat sheet)
https://medium.com/flutter-community/flutter-layout-cheat-sheet-5363348d037e
댓글