'Flutter PageView children scrolled together when i am using PageView -> ListView | SingleChildScrollVIew
Flutter PageView children that is ListView scrolled when the one child scrolled. They are sharing one scrolling behavior. How can I fix this issue? Help me?
Solution 1:[1]
add these line inside ListView:
ListView(
physics: NeverScrollableScrollPhysics(),
shrinkWrap: true,
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | imran sifat |
