Search code examples
flutterscrollflutter-pageview

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

  • I solved my issue by adding specific ScrollController to each PageView's Scrolling widget.

    ScrollController _scrollController = ScrollController();