如何在抖动中添加水平图像集?

时间:2018-12-03 06:31:23

标签: android flutter hybrid-mobile-app

您好,我正在尝试制作类似这样的内容。所有黑球都是png图像。 enter image description here

到目前为止,我已经尝试过了

ionViewDidLoad

scrollDirection无效,因为我使用另一个列表视图在页面中显示所有组件。 我该如何解决?

编辑:我的完整代码如下

this.navCtrl.parent.select(0) //your tab index

1 个答案:

答案 0 :(得分:0)

scrollDirection: Axis.horizontal添加到ListView对象。 使用水平scrollDirection时,Container对象必须指定高度

以下代码来自我必须实现水平图像轮播的项目:

Container(
        margin: EdgeInsets.only(top: 20.0),
        height: 200.0,
        child: ListView(
          padding: EdgeInsets.all(0.0), 
          scrollDirection: Axis.horizontal,
          shrinkWrap: true,
          children: <Widget>[
            Row( 
              mainAxisAlignment: MainAxisAlignment.center,
              crossAxisAlignment: CrossAxisAlignment.center,
              mainAxisSize: MainAxisSize.min,
              children: _imagesWidget // this is a list containing Cards with image
            )
          ]
        ),
      );