minor fix

This commit is contained in:
Matthew Fosse 2024-01-03 16:11:45 -05:00
parent d7a05674b7
commit 139e10d9a1

View file

@ -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(