I want to center all the titles in my app with theme, theres a way to do it ?
I want to center all the titles in my app with theme, theres a way to do it ?
Centering App Bar using Theme
theme: ThemeData(
appBarTheme: AppBarTheme(centerTitle: true),),
use centerTitle: true
appBar: AppBar(
centerTitle: true,
title: Text("Appbar Title"),
),