To make the text to the center of the AppBar
instead of the top of the AppBar
.
appBar: AppBar(
backgroundColor: Colors.white,
title: const Text("Test", style:TextStyle(color: Colors.black)),
actions: [Text( formattedDate, style:TextStyle(color: Colors.black))
],
),
>Solution :
Wrap the Text
widget with an Align
widget like this:
appBar: AppBar(
backgroundColor: Colors.white,
title: Text(
"Test",
style: TextStyle(color: Colors.black),
),
actions: [
Align(
alignment: Alignment.center,
child: Text(
formattedDate,
style: TextStyle(color: Colors.black),
),
),
],
),