티스토리 뷰

Flutter

Row and Column classes

아이언 베어 2020. 12. 12. 22:28

Row and Column classes

Row and Column are classes that contain and lay out widgets. Widgets inside of a Row or Column are called children, and Row and Column are referred to as parents. Row lays out its widgets horizontally, and Column lays out its widgets vertically.

 

Row와 Column은  widget을 포함하고 배치하는 class 이다. 

Row와 Column 안에 있는 Widget을 children이라고 부르고, Row와  Column을 parents라고 부른다.

Row의 Widget은 수평으로, Column의 Widget은 수직으로 배치한다.

 

 

'Flutter' 카테고리의 다른 글

Flutter Building layouts Tutorial  (0) 2020.12.13
Introduction to widgets  (0) 2020.12.13
Flutter crossAxisAlignment property  (0) 2020.12.12
Flutter layout practice/플러터 레이아웃 연습  (0) 2020.12.12
Flutter webview/플러터 웹뷰  (0) 2020.12.12