How to add the widgets dynamically to column in Flutter?
Clash Royale CLAN TAG #URR8PPP How to add the widgets dynamically to column in Flutter? I have added a few widgets inside the ListView . So that I can scroll all widgets. Now I required to add one more widget to the ListView to load the list of comments. I can not add the ListView inside the ListView . And moreover, I do not require the separate scroll for my comments. It should be scroll along with the widgets inside the ListView . So I planned to add the Column instead of ListView . Could any help to add my comments dynamically in the Columns ? ListView ListView ListView ListView ListView Column ListView Columns new Expanded( child: new ListView( shrinkWrap: true, children: <Widget>[ // Title new Padding(padding: const EdgeInsets.only( top: 10.00, left: 10.00), child: new Text( _feed.title, textAlign: TextAlign.start,), ), ...