i tried creating scrollable row in flutter
but after trying multiple methods in some i am facing issue of height being fixed or list is not scrolling
posting one of the code i tried.
looking forward for a way where i can scroll in a row and don't need to fix a height for the widget.
new Column(
children: [
new Container(
height: 100.0,
child: ListView(
scrollDirection: Axis.horizontal,
children: <Widget>[
new Text("text 1"),
new Text("text 2"),
new Text("text 3"),
],
),
),
],
),