make screen scrollable flutter code example
Example 1: disable scrollview flutter
physics = NeverScrollableScrollPhysics()
Example 2: how to scroll screen in flutter
// Add SingleChildScrollView or add items in ListView
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('News'),
),
body: SingleChildScrollView(
child: Column(
children: <Widget>[
],
),
));
}