flutter: Change game warning text font size to 11 and align center

This commit is contained in:
Calcitem 2021-02-14 21:00:04 +08:00
parent 5903de20ca
commit 133dd70c9a
3 changed files with 4 additions and 3 deletions

View File

@ -141,7 +141,8 @@ class _MainMenuState extends State<MainMenu> with TickerProviderStateMixin {
),
Expanded(child: SizedBox()),
Text(S.of(context).gameWarning,
style: TextStyle(color: Colors.black54, fontSize: 16)),
style: TextStyle(color: Colors.black54, fontSize: 11),
textAlign: TextAlign.center),
Expanded(child: SizedBox()),
Text(S.of(context).copyright,
style: TextStyle(color: Colors.black54, fontSize: 16)),