fix: Improve progress indicator background

This commit is contained in:
Alberto Ponces 2022-09-12 11:20:02 +01:00
parent 38088d2f6a
commit 0db6426e91

View File

@ -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,
),
),