Answers for "how to add padding in a flutter"

1

flutter padding

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

padding flutter top

new Container(
    margin: const EdgeInsets.only(top: 10.0),
    child : new RaisedButton(
                onPressed: _submit,
                child: new Text('Login'),
              ),
Posted by: Guest on June-19-2020

Code answers related to "how to add padding in a flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language