appbar center title flutter code example
Example 1: how to center the title of the appbar flutter
AppBar(
centerTitle: true,
...
)
Example 2: flutter appbar( title center)
AppBar(
centerTitle: true,
...
)
Example 3: flutter appbar icon center
appBar: AppBar(centerTitle: true, title: AppImages.logoSvg)
Example 4: how to set title in appbar in flutter
appBar: AppBar(
title: Text('Sample Title'),
),
output: -------------------
| Sample Title |
--------------------
| |
| |
| |
| |
| |
--------------------