fix: use download icon for saving files

This commit is contained in:
OfficialDakari 2025-11-27 12:43:47 +05:00
parent c7f53028c2
commit abea38a654
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ class ChatView extends StatelessWidget {
// Use builder context to correctly position the share dialog on iPad // Use builder context to correctly position the share dialog on iPad
Builder( Builder(
builder: (context) => IconButton( builder: (context) => IconButton(
icon: Icon(Icons.adaptive.share), icon: const Icon(Icons.download),
tooltip: L10n.of(context).share, tooltip: L10n.of(context).downloadFile,
onPressed: () => controller.saveSelectedEvent(context), onPressed: () => controller.saveSelectedEvent(context),
), ),
), ),