From de2e14fc3e05d2f519b7516c2cda979061fb03e9 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 16 Dec 2022 06:27:57 -0600 Subject: [PATCH] font weight == bold Signed-off-by: Jeff Carr --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 13812ce..19e1901 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -43,7 +43,7 @@ class _RandomWordsState extends State { final wordPair = WordPair.random(); return Text( wordPair.asPascalCase, - style: TextStyle(fontSize: 36) + style: TextStyle(fontSize: 48, fontWeight: FontWeight.bold) ); } }