return Container( child: ListView( children: <Widget>[ Column( children: <Widget>[ Container( child: Text(‘午餐‘), ), Container( height: 100, child: ListView( scrollDirection: Axis.horizontal,//橫向 children: <Widget>[ Container( width: 150, height: 50, color: Colors.black, ), Container( width: 150, height: 50, color: Colors.blue, ), Container( width: 150, height: 50, color: Colors.redAccent, ), Container( width: 150, height: 50, color: Colors.amber, ), ], ), ), ], ), ], ), );
原文:https://www.cnblogs.com/ssjf/p/11776848.html