Created
November 26, 2019 06:29
-
-
Save dllewellyn/9948590493b884230ff3c8faa6d12d3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| theme: ThemeData( | |
| primarySwatch: Colors.red, | |
| textTheme: TextTheme( | |
| title: TextStyle( | |
| fontFamily: "stonehenge", | |
| fontWeight: FontWeight.bold, | |
| fontSize: 26, | |
| ), | |
| )), | |
| home: MyHomePage(), | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment