Answers for "top padding margin 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
1

flutter padding

const Card(
  child: Padding(
    padding: EdgeInsets.all(16.0),
    child: Text('Hello World!'),
  ),
)
Posted by: Guest on July-27-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language