Answers for "flutter textfield inputdecoration hint alig centern"

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

Code answers related to "flutter textfield inputdecoration hint alig centern"

Browse Popular Code Answers by Language