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,
                    ),
                  ],
                ),
              ),
            ],
          ),
        ],
      ),
    );

 

posted on 2019-11-01 14:33  诉说静风  阅读(175)  评论(0编辑  收藏  举报

Live2D
快把你的小爪子拿开!