1.Please, can someone tell me how to create a row of text boxes that are scrollable to left or right in flutter inside a ListView. I can see that I am trying to define an in
For a row/column to scroll you can simply use the SingleChildScrollView feature and mention the direction as required.
SingleChildScrollView
SingleChildScrollView( scrollDirection: Axis.horizontal, child: Row( children: [ //provide all the things u want to horizontally scroll here ] ), );