return MaterialApp(
title: 'title',
theme: ThemeData(
fontFamily: 'Times',
How do I get the defined fontfamily string value while on any page?
You can make your font-family string a global variable using:
import 'globals.dart' as globals;
Please refer to the post below for a more detailed explanation