Style upload progress snackbar with accent color (nyan)
This commit is contained in:
@@ -718,8 +718,8 @@ class _FileExplorerState extends State<FileExplorer> {
|
|||||||
child: CircularProgressIndicator(
|
child: CircularProgressIndicator(
|
||||||
value: totalProgress,
|
value: totalProgress,
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
color: Colors.white,
|
color: AppTheme.accentColor,
|
||||||
backgroundColor: Colors.white24,
|
backgroundColor: AppTheme.accentColor.withValues(alpha: 0.3),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 12),
|
const SizedBox(width: 12),
|
||||||
@@ -727,6 +727,7 @@ class _FileExplorerState extends State<FileExplorer> {
|
|||||||
child: Text(
|
child: Text(
|
||||||
'Uploading $fileName... ${(totalProgress * 100).toInt()}%',
|
'Uploading $fileName... ${(totalProgress * 100).toInt()}%',
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
|
style: const TextStyle(color: AppTheme.primaryText),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user