Horje
how to add padding flutter Code Example
how to add padding flutter
Padding(
	// Even Padding On All Sides
    padding: EdgeInsets.all(10.0),
    // Symetric Padding
    padding: EdgeInsets.symmetric(vertical: 10.0, horizontal: 5.0),
    // Different Padding For All Sides
    padding: EdgeInsets.fromLTRB(1.0, 2.0, 3.0, 4.0);
    
    child: Child
    (
    	...
    ),
)
flutter padding
const Card(
  child: Padding(
    padding: EdgeInsets.all(16.0),
    child: Text('Hello World!'),
  ),
)




5

Related
flutter list tile Code Example flutter list tile Code Example
underline text in flutter Code Example underline text in flutter Code Example
asset image in circle avatar flutter Code Example asset image in circle avatar flutter Code Example
dart random number Code Example dart random number Code Example
dart convert string to datetime Code Example dart convert string to datetime Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15