How to change AppBar Title colour in Flutter
How to change AppBar Title fontFamily in Flutter
How to change AppBar Title fontSize in Flutter
How to change AppBar Title fontWeight in Flutter
To change all the above use text style.
You can read more about AppBar in this post:
Flutter Basics – How to Customize AppBar in Flutter
You can read more about the Text widget in this post:
Flutter Basics – What is and how to use Text widget in Flutter
appBar: AppBar(
title: const Text(
'Title',
style: TextStyle(
fontSize:30.0,
color: const Color(0xFF8200CC),
fontWeight: FontWeight.w900,
fontFamily: "Roboto"
),
),
backgroundColor: Colors.orangeAccent,
),

How to center the title on the AppBAr in Flutter
appBar: AppBar(
title: Text("Title"),
centerTitle: true,
),
