Scrolling in its own container in expanded widget flutter, How can i make it scroll through the whole page ? ( Flutter )
Your SingleChildScrollView
handling the page scroll event.
For rest of the vertical scrollable widget include NeverScrollableScrollPhysics(),
. Also, you can test with primary: false,
ListView.builder(
physics: NeverScrollableScrollPhysics(),