Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to keep AppBar Title centered after navigating to next screen

How do I keep the appbar title center after navigating to next screen. When I navigate to the next screen, the back arrow Button "<" comes up which shifts the title to the right. How can I keep the title centered? I tried centerTitle = True but didn't work

appBar: AppBar(
  centerTitle: true,
  backgroundColor: Colors.teal,
  title: Center(
    child: Text(
      kAppBarTitle,
    ),
  ),
),
like image 208
Felix Avatar asked Dec 19 '25 02:12

Felix


1 Answers

If you're using centerTitle: true, do not use Center widget inside your title parameter.

appBar: AppBar(
  centerTitle: true,
  backgroundColor: Colors.teal,
  title: Text(
      kAppBarTitle,
   ),
),

That's all you need to fix it.

like image 94
Mariano Zorrilla Avatar answered Dec 21 '25 17:12

Mariano Zorrilla