text flutter with padding code example
Example 1: content padding field text flutter
TextField(
textAlign: TextAlign.left,
decoration: new InputDecoration(hintText: "Enter Something", contentPadding: const EdgeInsets.all(20.0))
)
Example 2: flutter padding
const Card(
child: Padding(
padding: EdgeInsets.all(16.0),
child: Text('Hello World!'),
),
)