How to scroll page in flutter

后端 未结 9 1210
情话喂你
情话喂你 2021-01-30 20:05

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          


        
9条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 20:10

    You can use this one and it's best practice.

    SingleChildScrollView(
      child: Column(
        children: [
          //Your Widgets
          //Your Widgets,
          //Your Widgets
        ],
      ),
    );
    

提交回复
热议问题