I have overridden the titleSpacing in the constructor of AppBar. But no difference in the title space.
new AppBar( backgroundColor: Colors.amber, title: new Text("Flying Dutchman", style: new TextStyle( color: const Color(0xFF444444), fontSize: 30.0, fontWeight: FontWeight.w900, ), ), titleSpacing: 0.00, centerTitle: true, elevation: 0.0, ) I wish to reduce the top space of the app bar title.
