use vt323 in logging

pull/2/head
fuwa 5 years ago
parent fc2771ccf3
commit 0343c6c04b

@ -53,6 +53,11 @@ final _theme = ThemeData
fontSize: 17, fontSize: 17,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
), ),
body1: TextStyle
(
fontSize: 16,
height: 1,
),
body2: TextStyle body2: TextStyle
( (
fontSize: 11, fontSize: 11,

@ -53,7 +53,10 @@ Widget buildExiting(BuildContext context, ExitingState state) {
child: Text child: Text
( (
state.stdout.join(), state.stdout.join(),
style: Theme.of(context).textTheme.body2, style: Theme.of(context).textTheme.body1.apply
(
fontFamily: 'VT323',
),
) )
) )
) )

@ -53,7 +53,10 @@ Widget buildReSyncing(BuildContext context, ReSyncingState state) {
child: Text child: Text
( (
state.stdout.join(), state.stdout.join(),
style: Theme.of(context).textTheme.body2, style: Theme.of(context).textTheme.body1.apply
(
fontFamily: 'VT323',
),
) )
) )
) )

@ -53,7 +53,10 @@ Widget buildSyncing(BuildContext context, SyncingState state) {
child: Text child: Text
( (
state.stdout.join(), state.stdout.join(),
style: Theme.of(context).textTheme.body2, style: Theme.of(context).textTheme.body1.apply
(
fontFamily: 'VT323',
),
) )
) )
) )