Add background color to confirmation indicator (#3159)

tuxsudo committed Apr 8, 2026 at 16:13 UTC fd62cd5b522cb842b5de0cdfaf031f9d37fec06c
1 file changed +1
lib/new-ui/widgets/coins_page/unconfirmed_balance_widget.dart
+1
@@ -67,6 +67,7 @@ class UnconfirmedBalanceWidget extends StatelessWidget {
67 width: 20,
68 child: CircularProgressIndicator(
69 strokeWidth: 2,
70 + backgroundColor: Theme.of(context).colorScheme.primary.withAlpha(50),
71 color: Theme.of(context).colorScheme.primary,
72 value: dashboardViewModel.confirmationProgress,
73 ),