From 768fb53138da114fb0ac86ed6845b2738f573005 Mon Sep 17 00:00:00 2001 From: talksik Date: Fri, 30 Jun 2023 15:53:29 -0700 Subject: [PATCH] custom styling --- lib/main.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 73227b5..4d810e0 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -11,7 +11,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - title: 'woah', + title: 'Flutter app', theme: ThemeData( // This is the theme of your application. // @@ -110,7 +110,7 @@ class _MyHomePageState extends State { ), Text( '$_counter', - style: Theme.of(context).textTheme.headlineMedium, + style: TextStyle(fontSize: 200), ), ], ),