Answers for "how to center hint text in flutter"

5

flutter column center horizontal text

Center(
          child: Column(
            mainAxisSize: MainAxisSize.max,
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              Text('You are at center!'),
            ],
          ),
        ),
Posted by: Guest on February-20-2021
5

flutter center text in container

child: Center(
        child: Text(
          "Hello World",
          textAlign: TextAlign.center,
        ),
      ),
Posted by: Guest on March-28-2020

Code answers related to "how to center hint text in flutter"

Browse Popular Code Answers by Language