mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-22 18:54:47 +00:00
minor fix
This commit is contained in:
parent
d7a05674b7
commit
139e10d9a1
1 changed files with 10 additions and 8 deletions
|
@ -56,14 +56,16 @@ class SyncIndicator extends StatelessWidget {
|
||||||
: Offstage(),
|
: Offstage(),
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
Container(
|
Observer(builder: (_) {
|
||||||
width: 15,
|
return Container(
|
||||||
margin: EdgeInsets.only(left: 12, bottom: 2),
|
width: 15,
|
||||||
child: Image.asset(
|
margin: EdgeInsets.only(left: 12, bottom: 2),
|
||||||
'assets/images/tor_icon.png',
|
child: Image.asset(
|
||||||
color: dashboardViewModel.isTorConnected ? null : Colors.white,
|
'assets/images/tor_icon.png',
|
||||||
),
|
color: dashboardViewModel.isTorConnected ? null : Colors.white,
|
||||||
),
|
),
|
||||||
|
);
|
||||||
|
}),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
|
|
Loading…
Reference in a new issue