Style upload progress snackbar with accent color (nyan)

This commit is contained in:
Leon Bösche
2026-01-13 16:49:17 +01:00
parent 37e0520af0
commit d2c26e6203

View File

@@ -718,8 +718,8 @@ class _FileExplorerState extends State<FileExplorer> {
child: CircularProgressIndicator(
value: totalProgress,
strokeWidth: 2,
color: Colors.white,
backgroundColor: Colors.white24,
color: AppTheme.accentColor,
backgroundColor: AppTheme.accentColor.withValues(alpha: 0.3),
),
),
const SizedBox(width: 12),
@@ -727,6 +727,7 @@ class _FileExplorerState extends State<FileExplorer> {
child: Text(
'Uploading $fileName... ${(totalProgress * 100).toInt()}%',
overflow: TextOverflow.ellipsis,
style: const TextStyle(color: AppTheme.primaryText),
),
),
],