flutter scrollable code example
Example 1: flutter scrollable row
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: [
Text('hi'),
Text('hi'),
Text('hi'),
]
)
)
Example 2: make scaffold scrollable flutter
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('News'),
),
body: SingleChildScrollView( // <-- wrap this around
child: Column(
children: [
],
),
));
}