Answers for "padding from direction flutter"

5

flutter padding top and bottom

Padding(
 	padding: EdgeInsets.only(top: 10.0, bottom: 10.0),
    padding: EdgeInsets.symmetric(vertical: 10.0,),
    child: Text('Padding'),
  ),
Posted by: Guest on August-25-2021
8

flutter padding

Padding(
    padding: EdgeInsets.all(16.0),
    padding: EdgeInsets.symmetric(vertical: 10.0, horizontal: 10.0),
    padding: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 10.0);
    child: Text('Padding'),
  ),
Posted by: Guest on August-25-2021
0

flutter padding

Padding(
  padding: const EdgeInsets.all(8.0),
  child: Text("text"),
);
Posted by: Guest on November-10-2021

Code answers related to "padding from direction flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language