more tweak on synced style

pull/1/head
fuwa 5 years ago
parent 57d95e7594
commit c8f9287804

@ -41,15 +41,15 @@ Widget buildSynced(BuildContext context, SyncedState state) {
[ [
Spacer Spacer
( (
flex: 21, flex: 17,
), ),
Image.asset Image.asset
('assets/wownero_symbol.png', ('assets/wownero_symbol.png',
height: 200, height: 220,
), ),
Spacer Spacer
( (
flex: 8, flex: 7,
), ),
new Expanded new Expanded
( (
@ -62,7 +62,7 @@ Widget buildSynced(BuildContext context, SyncedState state) {
style: TextStyle style: TextStyle
( (
fontFamily: 'RobotoMono', fontFamily: 'RobotoMono',
fontSize: 40, fontSize: 35,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
color: config.textColor, color: config.textColor,
), ),
@ -79,7 +79,10 @@ Widget buildSynced(BuildContext context, SyncedState state) {
width: 20.0, width: 20.0,
child: (state.connected) ? child: (state.connected) ?
Container() : Container() :
CircularProgressIndicator(), CircularProgressIndicator
(
strokeWidth: 2,
),
), ),
], ],
), ),