How to scroll page in flutter

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

    Wrap your widget tree inside a SingleChildScrollView

     body: SingleChildScrollView(
    child: Stack(
        children: [
          new Container(
            decoration: BoxDecoration(
                image: DecorationImage(...),
          new Column(children: [
            new Container(...),
            new Container(...... ),
            new Padding(
              child: SizedBox(
                child: RaisedButton(..),
            ),
    ....
    ...
     ); // Single child scroll view
    

    Remember, SingleChildScrollView can only have one direct widget (Just like ScrollView in Android)

提交回复
热议问题