2022年6月13日星期一

Row-Expanded 橫向平均分配, Column-Expanded 直向平均分配

Row(
children: [
Expanded(child: Icon(Icons.ac_unit),flex: 1,),
Expanded(child: Icon(Icons.airport_shuttle),flex: 1),
Expanded(child: Icon(Icons.all_inclusive),flex: 1),
],

)


Column(
children: [
Expanded(child: Icon(Icons.ac_unit),flex: 1,),
Expanded(child: Icon(Icons.airport_shuttle),flex: 1),
Expanded(child: Icon(Icons.all_inclusive),flex: 1),
],

)

沒有留言:

發佈留言