Answers for "column padding flutter"

1

flutter column padding

Padding(
  padding: const EdgeInsets.all(8.0),
  child: Text("text"), // here place whathever child you want
);
Posted by: Guest on March-12-2021
0

column each child padding

Wrap(
  spacing: 20, // to apply margin in the main axis of the wrap
  runSpacing: 20, // to apply margin in the cross axis of the wrap
  children: <Widget>[
     Text('child 1'),
     Text('child 2')
  ]
)
Posted by: Guest on August-14-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language