美文网首页Flutter 知识点整理
flutter2环境下的ListView

flutter2环境下的ListView

作者: 跨界师 | 来源:发表于2021-06-29 23:36 被阅读0次

实现效果:


image.png

可以作为分栏目滑动组件使用(水平滑动样式)

代码如下:

Container(
      height: 180.0,
      child: ListView(
        scrollDirection: Axis.horizontal,   // 水平设置
        children: [
          Container(
            width: 180.0,
            height: 180.0,
            color: Colors.red,
          ),
          Container(
            width: 180.0,
            height: 180.0,
            color: Colors.blue,
          ),
          Container(
            width: 180.0,
            height: 180.0,
            color: Colors.green,
          ),
          Container(
            width: 180.0,
            height: 180.0,
            color: Colors.yellow,
          ),
          Container(
            width: 180.0,
            height: 180.0,
            color: Colors.deepOrange,
          ),
          Container(
            width: 180.0,
            height: 180.0,
            color: Colors.lightBlue,
          ),
        ],
      ),
    );

相关文章

网友评论

    本文标题:flutter2环境下的ListView

    本文链接:https://www.haomeiwen.com/subject/unclultx.html