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

2

flutter scrollable row

SingleChildScrollView(
  scrollDirection: Axis.horizontal,
  child: Row(
   children: <Widget>[
     Text('hi'),
     Text('hi'),
     Text('hi'),
   ]
  )
)
Posted by: Guest on January-07-2021
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 container scrollable in flutter"

Browse Popular Code Answers by Language