Answers for "how to show item in padding when scrolling 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
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 show item in padding when scrolling flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language