Answers for "how to add padding to text in flutter"

5

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
    (
    	...
    ),
)
Posted by: Guest on May-25-2020
1

change padding in text field flutter

decoration: InputDecoration(
				contentPadding: const EdgeInsets.all(12), isDense: true,
			)
Posted by: Guest on March-25-2021
1

content padding field text flutter

TextField(
          textAlign: TextAlign.left,
          decoration: new InputDecoration(hintText: "Enter Something", contentPadding: const EdgeInsets.all(20.0))
          )
Posted by: Guest on May-14-2020
1

flutter padding

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

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

Browse Popular Code Answers by Language