Flutter Expanded扩展布局,比如底部固定高度,上面的空间可以留下给Expanded。
children: [
Expanded(
child: Padding(
padding: const EdgeInsets.all(32),
child: _CartList(),
),
),
Divider(height: 4, color: Colors.black),
_CartTotal() //这个是固定高度的,所以剩下的就是上面的部分了。
],