If you are facing this problem, then set ListView physics to NeverScrollableScrollPhysics.
Example below,
ListView(
shrinkWrap: true,
physics: NeverScrollableScrollPhysics(),
children: List.generate(10, (index) => listItems()),
),
Hope this will be helpful.