Answers for "row scroll flutter"

2

flutter scrollable row

SingleChildScrollView(
  scrollDirection: Axis.horizontal,
  child: Row(
   children: <Widget>[
     Text('hi'),
     Text('hi'),
     Text('hi'),
   ]
  )
)
Posted by: Guest on January-07-2021

Browse Popular Code Answers by Language