How to center the title of an AppBar with theme [FLUTTER]

Viewed 3054

I want to center all the titles in my app with theme, theres a way to do it ?

2 Answers

Centering App Bar using Theme

theme: ThemeData(
        appBarTheme: AppBarTheme(centerTitle: true),),

use centerTitle: true

appBar: AppBar(
        centerTitle: true,
        title: Text("Appbar Title"),
      ),
Related