I been trying everything to center the hintText of a TextFormField but not working, what am I doing wrong?
here's the code
child: new TextFormField(
textAlign: TextAlign.center,
decoration: new InputDecoration(
hintText: "Full name",
),
),
Is this supposed to center the hintText? if yes why is it not centering?
whats the supposed behaviour?