您好,我正在尝试制作类似这样的内容。所有黑球都是png图像。
到目前为止,我已经尝试过了
ionViewDidLoad
scrollDirection无效,因为我使用另一个列表视图在页面中显示所有组件。 我该如何解决?
编辑:我的完整代码如下
this.navCtrl.parent.select(0) //your tab index
答案 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
)
]
),
);