How to scroll page in flutter

后端 未结 9 1471
情话喂你
情话喂你 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:17

    Thanks guys for help. From your suggestions i reached a solution like this.

    new LayoutBuilder(
            builder:
                (BuildContext context, BoxConstraints viewportConstraints) {
              return SingleChildScrollView(
                child: ConstrainedBox(
                  constraints:
                      BoxConstraints(minHeight: viewportConstraints.maxHeight),
                  child: Column(children: [
                 // remaining stuffs
                  ]),
                ),
              );
            },
          )
    

提交回复
热议问题