📜  颤振禁用滚动动画列表 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:03.484000             🧑  作者: Mango

代码示例1
ListView(
   physics: NeverScrollableScrollPhysics(), // <-- this will disable scroll
   shrinkWrap: true,
   children: [],
 ),