Padding

  • Usage
    the Padding widget is used to add space around its child widget. You can add padding to any side (top, bottom, left, right) or symmetrically to all sides.
    
                      Container(
                          padding: EdgeInsets.all(50.0),
                          child: Text(
                              'Hello world'
                          ),
                      ),