Ejemplo 1: cómo centrar el título del flutter de la barra de aplicaciones
AppBar(
centerTitle: true, // this is all you need
...
)
Ejemplo 2: barra de aplicaciones de flutter (centro de título)
AppBar(
centerTitle: true, // this is all you need
...
)
Ejemplo 3: centro de iconos de la barra de aplicaciones de flutter
appBar: AppBar(centerTitle: true, title: AppImages.logoSvg)
Ejemplo 4: cómo establecer el título en la barra de aplicaciones en flutter
appBar: AppBar(
title: Text('Sample Title'),
),
output: -------------------
| Sample Title |
--------------------
| |
| |
| |
| |
| |
--------------------
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)