0
 return MaterialApp(
      title: 'title',
      theme: ThemeData(
        fontFamily: 'Times',

How do I get the defined fontfamily string value while on any page?

katre
  • 173
  • 1
  • 5
  • 11

1 Answers1

0

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

https://stackoverflow.com/a/29182641/8622829

selected
  • 764
  • 2
  • 10
  • 19