Flutter PageView children scrolled together when i am using PageView -> ListView | SingleChildScrollVIew

Issue

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();

Answered By – Barsbaatar Tig

Answer Checked By – Timothy Miller (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *