custom styling

This commit is contained in:
talksik
2023-06-30 15:53:29 -07:00
parent 941232d30d
commit 768fb53138
+2 -2
View File
@@ -11,7 +11,7 @@ class MyApp extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialApp( return MaterialApp(
title: 'woah', title: 'Flutter app',
theme: ThemeData( theme: ThemeData(
// This is the theme of your application. // This is the theme of your application.
// //
@@ -110,7 +110,7 @@ class _MyHomePageState extends State<MyHomePage> {
), ),
Text( Text(
'$_counter', '$_counter',
style: Theme.of(context).textTheme.headlineMedium, style: TextStyle(fontSize: 200),
), ),
], ],
), ),