Update share button icon to use send_outlined for improved clarity

This commit is contained in:
Leon Bösche
2026-01-24 22:14:53 +01:00
parent 1cf778366f
commit 5f7d831bdd

View File

@@ -1310,7 +1310,10 @@ class _FileExplorerState extends State<FileExplorer>
onPressed: () => _downloadFile(file),
),
IconButton(
icon: const Icon(Icons.share, color: AppTheme.secondaryText),
icon: const Icon(
Icons.send_outlined,
color: AppTheme.secondaryText,
),
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
onPressed: () => _shareFile(file),