flutter listview in single child scrollview code example
Example 1: listview inside singlechildscrollview flutter scrolling
SingleChildScrollView
Column
Container
ListView(
shrinkWrap: true,
physics: NeverScrollableScrollPhysics(),
//...
)
Example 2: listview inside singlechildscrollview flutter scrolling
ListView(
primary: false,
shrinkWrap: true,
),