問題:子Container 寬高始終為100
解決:為子Container 指定在父布局中的對齊方式
Container(
????????width:100,
????????height:100,
????????color: Colors.red,
????????child:Align(
????????????????alignment: Alignment.topLeft,
????????????????child:Container(
? ? ? ? ? ? ? ? ? ? ? ? width:30,
????????????????????????height:30,
????????????????????????color: Colors.blue,
? ? ????????????????????),
????????????? ),
);