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,
tooltip: L10n.of(context)!.share,
),
if (PlatformInfos.isAndroid)
if (!PlatformInfos.isIOS)
IconButton(
icon: const Icon(Icons.download_outlined),
onPressed: controller.saveFileAction,
color: Colors.white,
tooltip: L10n.of(context)!.downloadFile,
),
IconButton(
onPressed: controller.shareFileAction,
tooltip: L10n.of(context)!.share,
color: Colors.white,
icon: const Icon(Icons.share),
)
if (PlatformInfos.isMobile)
IconButton(
onPressed: controller.shareFileAction,
tooltip: L10n.of(context)!.share,
color: Colors.white,
icon: const Icon(Icons.share),
)
],
),
body: InteractiveViewer(