Answers for "text in container padding in flutter"

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
0

container padding flutter

Container(
  constraints: BoxConstraints.expand(
    height: Theme.of(context).textTheme.headline4!.fontSize! * 1.1 + 200.0,
  ),
  
  padding: const EdgeInsets.all(8.0),// here is it
  
  color: Colors.blue[600],
  alignment: Alignment.center,
  child: Text('Hello World',
    style: Theme.of(context)
        .textTheme
        .headline4!
        .copyWith(color: Colors.white)),
  transform: Matrix4.rotationZ(0.1),
)
Posted by: Guest on June-15-2021

Code answers related to "text in container padding in flutter"

Browse Popular Code Answers by Language