flutter appbar theme code example
Example: appbar theme flutter
appBarTheme: AppBarTheme().copyWith(
textTheme: TextTheme(
headline6: TextStyle(
fontFamily: 'Open Sans',
fontWeight: FontWeight.bold,
fontSize: 20,
),
),
),