How to scroll page in flutter

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

    Very easy if you are already using a statelessWidget checkOut my code

    class _MyThirdPage extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: AppBar(
            title: Text('Understanding Material-Cards'),
          ),
          body: SingleChildScrollView(
              child: Column(
            children: [
              _buildStack(),
              _buildCard(),
              SingleCard(),
              _inkwellCard()
            ],
          )),
        );
      }
    }
    

提交回复
热议问题