mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Improve progress indicator background
This commit is contained in:
parent
38088d2f6a
commit
0db6426e91
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue