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: (_) {
return Container(
width: 15, width: 15,
margin: EdgeInsets.only(left: 12, bottom: 2), margin: EdgeInsets.only(left: 12, bottom: 2),
child: Image.asset( child: Image.asset(
'assets/images/tor_icon.png', 'assets/images/tor_icon.png',
color: dashboardViewModel.isTorConnected ? null : Colors.white, color: dashboardViewModel.isTorConnected ? null : Colors.white,
), ),
), );
}),
], ],
), ),
Padding( Padding(