My code for a page is like this. i need to scroll part below appbar.
@override Widget build(BuildContext context) { return new Scaffold( appBar: new
You can use this one and it's best practice. SingleChildScrollView( child: Column( children: [ //Your Widgets //Your Widgets, //Your Widgets ], ), );
You can use this one and it's best practice.
SingleChildScrollView( child: Column( children: [ //Your Widgets //Your Widgets, //Your Widgets ], ), );