最佳答案
我想创建一个名单的卡片滚动水平管理单元,以适应效果时,从左或右滑动。
每张卡片之间有一定的间距,可以像下图那样进行屏幕显示
除此之外,这些水平滚动的列表元素应该包含在垂直滚动的列表中。
我所能做到的只是显示一个水平滚动卡片列表后,下面的例子在扑动文档。
class SnapCarousel extends StatelessWidget {
@override
Widget build(BuildContext context) {
final title = 'Horizontal List';
return MaterialApp(
title: title,
home: Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Container(
margin: EdgeInsets.symmetric(vertical: 20.0),
height: 200.0,
child: ListView(
scrollDirection: Axis.horizontal,
children: <Widget>[
Container(
width: 160.0,
color: Colors.red,
),
Container(
width: 160.0,
color: Colors.blue,
),
Container(
width: 160.0,
color: Colors.green,
),
Container(
width: 160.0,
color: Colors.yellow,
),
Container(
width: 160.0,
color: Colors.orange,
),
],
),
),
),
);
}
}