From 0db6426e91584be973bf17fbdf6367aedfc20292 Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Mon, 12 Sep 2022 11:20:02 +0100 Subject: [PATCH] fix: Improve progress indicator background --- lib/ui/views/installer/installer_view.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ui/views/installer/installer_view.dart b/lib/ui/views/installer/installer_view.dart index 32933723..f29dba69 100644 --- a/lib/ui/views/installer/installer_view.dart +++ b/lib/ui/views/installer/installer_view.dart @@ -60,7 +60,8 @@ class InstallerView extends StatelessWidget { preferredSize: const Size(double.infinity, 1.0), child: LinearProgressIndicator( color: Theme.of(context).colorScheme.primary, - backgroundColor: Theme.of(context).colorScheme.secondary, + backgroundColor: + Theme.of(context).colorScheme.primaryContainer, value: model.progress, ), ),