Answers for "how to make form scroll 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

Code answers related to "how to make form scroll in flutter"

Browse Popular Code Answers by Language