less noise in resync state

pull/2/head
fuwa 5 years ago
parent 0afe7c508c
commit 646f45f54b

@ -43,6 +43,10 @@ Widget buildReSyncing(BuildContext context, ReSyncingState state) {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget> children: <Widget>
[ [
Spacer
(
flex: 1,
),
Expanded Expanded
( (
flex: 1, flex: 1,
@ -52,11 +56,15 @@ Widget buildReSyncing(BuildContext context, ReSyncingState state) {
reverse: true, reverse: true,
child: Text child: Text
( (
state.stdout.join(), state.stdout.last,
style: Theme.of(context).textTheme.body1, style: Theme.of(context).textTheme.body1,
) )
) )
) ),
Spacer
(
flex: 1,
),
], ],
), ),
), ),

@ -56,7 +56,7 @@ Widget buildSyncing(BuildContext context, SyncingState state) {
style: Theme.of(context).textTheme.body1, style: Theme.of(context).textTheme.body1,
) )
) )
) ),
], ],
), ),
), ),