Answers for "flutter scrollable columne"

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
3

flutter scrollable columne

return Expanded(
  child: SingleChildScrollView(
    child: Column(
      children: [
        _child1(),
        _child2()
      ]
    )
  )
);
Posted by: Guest on January-12-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language