return Container( child: ListView( children: <Widget>[ Column( children: <Widget>[ Container( child: Text('午餐'), ), Container( height: 100, child: ListView( scrollDirection: Axis.horizontal,//橫向 children: <Widget>[ Container( 150, height: 50, color: Colors.black, ), Container( 150, height: 50, color: Colors.blue, ), Container( 150, height: 50, color: Colors.redAccent, ), Container( 150, height: 50, color: Colors.amber, ), ], ), ), ], ), ], ), );