@override Widget build(BuildContext context) { return Column( children: [ ListBody( //对齐方式,注意,父元素是Column,这里只能是vertical垂直排列,如果像用Axis.horizontal水平排列,父元素必须是Row mainAxis: Axis.vertical, //内容是否反向 reverse: true, children: [ Container( color: Colors.red, width: 50.0, height: 50.0, child: Text( 'A', style: TextStyle( color: Colors.white, ), ), ), Container( color: Colors.orange, width: 100.0, height: 100.0, child: Text( 'B', style: TextStyle( color: Colors.white, ), ), ), Container( color: Colors.blue, width: 150.0, height: 150.0, child: Text( 'C', style: TextStyle( color: Colors.white, ), ), ), ], ) ], ); }
部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!