Answers for "space() in flutter"

1

flutter widget for space

SizedBox widget can be use in between two widget to add space between two widget
and it makes code more readable than padding widget.

Column(
  children: <Widget>[
    Widget1(),
    SizedBox(height: 10),
    Widget2(),
  ],
),
Posted by: Guest on March-15-2021
1

column remove space between flutter

Column(
   children: [
       SizedBox( // <-- use a sized box and change the height
         height: 40.0,
         child: ListTile(
         title: Text(element.controlConfig.label),
         ),
       ),
     ],
 ),
Posted by: Guest on September-09-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language