I want to change app bar font in my application universally but I did not find any appropriate answer I was looking for.
Is there any way to apply theme globally using ThemeData and theme in MaterialApp?
I don't want to apply TextStyle property like below
appBar: AppBar(
title: Text('Title ',style: TextStyle(fontFamily: 'YOUR_FONT_FAMILY'),
),
),
If not, what is the best way to change the app bar font?
P.S. This is my first post on StackOverflow.