From c8f9287804df8e3840315a5a74d1dc0fe7636423 Mon Sep 17 00:00:00 2001 From: fuwa Date: Thu, 27 Jun 2019 01:51:22 +0800 Subject: [PATCH] more tweak on synced style --- cyberwow/lib/widget/synced.dart | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/cyberwow/lib/widget/synced.dart b/cyberwow/lib/widget/synced.dart index 7e520c8..2b8dfe3 100644 --- a/cyberwow/lib/widget/synced.dart +++ b/cyberwow/lib/widget/synced.dart @@ -41,15 +41,15 @@ Widget buildSynced(BuildContext context, SyncedState state) { [ Spacer ( - flex: 21, + flex: 17, ), Image.asset ('assets/wownero_symbol.png', - height: 200, + height: 220, ), Spacer ( - flex: 8, + flex: 7, ), new Expanded ( @@ -62,7 +62,7 @@ Widget buildSynced(BuildContext context, SyncedState state) { style: TextStyle ( fontFamily: 'RobotoMono', - fontSize: 40, + fontSize: 35, fontWeight: FontWeight.bold, color: config.textColor, ), @@ -79,7 +79,10 @@ Widget buildSynced(BuildContext context, SyncedState state) { width: 20.0, child: (state.connected) ? Container() : - CircularProgressIndicator(), + CircularProgressIndicator + ( + strokeWidth: 2, + ), ), ], ),