Answers for "how to make a page scrollable in flutter"

6

how to make a column scrollable in flutter

return new Container(
  child: new SingleChildScrollView(
    child: new Column(
      children: <Widget>[
        _showChild1(),
        _showChild2(),
        ...
        _showChildN()
      ]
    )
  )
);
Posted by: Guest on September-22-2020
4

make scaffold scrollable flutter

@override
 Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: Text('News'),
    ),
    body: SingleChildScrollView(  // <-- wrap this around
      child: Column(
        children: <Widget>[
        ],
      ),
    ));
  }
Posted by: Guest on September-09-2020
1

how to make my app scrollable in flutter

// MAKE SURE ALL EXPANDERS AND SPACERS ARE REMOVED.
SingleChildScrollView(
  //wrap every other widget inside this and Save and see the magic happen!
)
Posted by: Guest on June-05-2021
0

Flutter Scrollable page

body: SingleChildScrollView(
child: Stack(
    children: <Widget>[
      new Container(
        decoration: BoxDecoration(
            image: DecorationImage(...),
      new Column(children: [
        new Container(...),
        new Container(...... ),
        new Padding(
          child: SizedBox(
            child: RaisedButton(..),
        ),
....
...
 ); // Single child scroll view
Posted by: Guest on August-07-2021

Code answers related to "how to make a page scrollable in flutter"

Browse Popular Code Answers by Language