尝试 PageView.builder
PageView.builder(
itemCount: 10,
itemBuilder: (context, i) {
return Column(
children: [
Card(
backgroundColor: Colors.yellow
),
SizedBox(height: 10),
Card(
backgroundColor: Colors.yellow
),
],
);
}
)