How to ban listview's scroll up/down animation in dart

Viewed 200

My listview just has a few items, and I don't want to scroll up and down. So how to ban it?

1 Answers

Define the never scroll physics

ListView(..., physics: const NeverScrollableScrollPhsics())
Related