Skip to content

Instantly share code, notes, and snippets.

@dllewellyn
Created November 26, 2019 06:29
Show Gist options
  • Save dllewellyn/9948590493b884230ff3c8faa6d12d3a to your computer and use it in GitHub Desktop.
Save dllewellyn/9948590493b884230ff3c8faa6d12d3a to your computer and use it in GitHub Desktop.
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