Merge branch 'krille/fix-download-web' into 'main'

chore: Fix download on web

See merge request famedly/fluffychat!861
This commit is contained in:
Krille Fear 2022-05-06 06:47:21 +00:00
commit d8b3ecf4c7

View file

@ -32,19 +32,20 @@ class ImageViewerView extends StatelessWidget {
color: Colors.white, color: Colors.white,
tooltip: L10n.of(context)!.share, tooltip: L10n.of(context)!.share,
), ),
if (PlatformInfos.isAndroid) if (!PlatformInfos.isIOS)
IconButton( IconButton(
icon: const Icon(Icons.download_outlined), icon: const Icon(Icons.download_outlined),
onPressed: controller.saveFileAction, onPressed: controller.saveFileAction,
color: Colors.white, color: Colors.white,
tooltip: L10n.of(context)!.downloadFile, tooltip: L10n.of(context)!.downloadFile,
), ),
IconButton( if (PlatformInfos.isMobile)
onPressed: controller.shareFileAction, IconButton(
tooltip: L10n.of(context)!.share, onPressed: controller.shareFileAction,
color: Colors.white, tooltip: L10n.of(context)!.share,
icon: const Icon(Icons.share), color: Colors.white,
) icon: const Icon(Icons.share),
)
], ],
), ),
body: InteractiveViewer( body: InteractiveViewer(