Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

text alignment center in flutter code example

Example 1: flutter center text in container

child: Center(
        child: Text(
          "Hello World",
          textAlign: TextAlign.center,
        ),
      ),

Example 2: how to align text in center in flutter container

Container(
        child: Align(
          alignment: Alignment.center,
          child: Text(
            'Some text here',
            style: TextStyle(

            ),
          ),
        ),
      ),

Tags:

Dart Example

Related

date format form html5 code example bootstrap4 bg-light changed code example finish code wile writin visual studio code code example w3schooll css table code example linux move file to folder command code example importing a file from a directory in python code example node npm ubuntu install code example create a new object array in java code example Form builder invalid angular 10 code example bootstrap custom button colors code example g datetime.datetime code example Count digits int code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy