Flutter Listview Scrollable Row

Try this code,

You can implement scrollable row in flutter using below code

and for scrollable column just change Column with Row

SingleChildScrollView(
  scrollDirection: Axis.horizontal,
  child: Row(
   children: <Widget>[
     Text('hi'),
     Text('hi'),
     Text('hi'),
   ]
  )
)

Edit : The keyword new is optional in Dart 2

see the output here

Leave a Comment