Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to align Hint Text into centre in Text Filed?

Tags:

flutter

dart

i am trying to add alignment to the hint-text inside Text-field.but it is not working. How to bring it to centre?? How to write text in curved shape???

 Container(            child: new TextFormField(                        controller: _pass,                        textAlign: TextAlign.center,                         decoration: new InputDecoration.collapsed(                                              hintText: " PASSWORD", ), )), 
like image 920
praveen Dp Avatar asked Apr 09 '18 11:04

praveen Dp


1 Answers

use textAlign: TextAlign.center, inside TextFormField or textfield

here is the code

enter image description here

The Output Like This

enter image description here

like image 119
Tushar Nikam Avatar answered Sep 24 '22 00:09

Tushar Nikam