font weight == bold

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2022-12-16 06:27:57 -06:00
parent d849c1f6bf
commit de2e14fc3e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class _RandomWordsState extends State<RandomWords> {
final wordPair = WordPair.random();
return Text(
wordPair.asPascalCase,
style: TextStyle(fontSize: 36)
style: TextStyle(fontSize: 48, fontWeight: FontWeight.bold)
);
}
}