horizontal scrolling in fluitter
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
//by default scroll directioin is vertical
child: SingleChildScrollView(
//changing scroll direction into horizontal
scrollDirection: Axis.horizontal,
child: Row(
children: <Widget>[
],
),
),
)
)
);
}
}