Answers for "how to set app bar title in center in flutter"

9

how to center the title of the appbar flutter

AppBar(
  centerTitle: true, // this is all you need
  ...
)
Posted by: Guest on July-21-2020
2

flutter appbar center text

appBar: AppBar(
	title: Text('AppBar'),
    centerTitle: true, // appbar text center.
   ),
Posted by: Guest on August-20-2021

Code answers related to "how to set app bar title in center in flutter"

Browse Popular Code Answers by Language