Answers for "flutter padding horizontal"

1

flutter padding

const Card(
  child: Padding(
    padding: EdgeInsets.all(16.0),
    child: Text('Hello World!'),
  ),
)
Posted by: Guest on July-27-2020
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

Code answers related to "Dart"

Browse Popular Code Answers by Language