Container是Flutter里很常用的一個(gè)組件,類似于html中的div。

Container中的盒子模型
如圖所示,和div一樣,container也可以設(shè)置寬度(width)、高度(heigth)、內(nèi)邊距(padding)、外邊距(margin)、邊框(border)。
常用屬性講解
width:容器的寬度
heigth:容器的高度
color:容器的背景色
Container(
height: 200,
width: 200,
color: Colors.lightBlue,
)
效果如圖

長(zhǎng)寬背景
padding:內(nèi)邊距
margin:外邊距