fix: use download icon for saving files
This commit is contained in:
parent
c7f53028c2
commit
abea38a654
|
|
@ -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),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue