Answers for "flutter input text center"

2

textfield align center flutter

TextField(
   textAlign: TextAlign.center,
   decoration: InputDecoration(
     hintText: "Centered Hint",
   ),
)
Posted by: Guest on September-06-2021
1

flutter inputdecoration center

TextFormField(
	textAlign: TextAlign.center, // add this line
    ...
)
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language