fluffychat/lib/pages/image_viewer/image_viewer_view.dart

70 lines
2.1 KiB
Dart
Raw Normal View History

2020-05-16 08:02:33 +02:00
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
2021-02-20 07:40:42 +01:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-05-16 08:02:33 +02:00
2021-11-09 21:32:16 +01:00
import 'package:fluffychat/pages/chat/events/image_bubble.dart';
import 'package:fluffychat/utils/platform_infos.dart';
2021-11-09 21:32:16 +01:00
import 'image_viewer.dart';
2021-10-26 18:50:34 +02:00
2021-05-22 09:13:47 +02:00
class ImageViewerView extends StatelessWidget {
2021-04-10 09:06:24 +02:00
final ImageViewerController controller;
2020-05-16 08:02:33 +02:00
2022-01-29 12:35:03 +01:00
const ImageViewerView(this.controller, {Key? key}) : super(key: key);
2020-05-16 08:02:33 +02:00
@override
Widget build(BuildContext context) {
2021-05-25 20:41:37 +02:00
return Scaffold(
backgroundColor: Colors.black,
extendBodyBehindAppBar: true,
appBar: AppBar(
elevation: 0,
leading: IconButton(
2021-10-14 18:09:30 +02:00
icon: const Icon(Icons.close),
2021-05-25 20:41:37 +02:00
onPressed: Navigator.of(context).pop,
color: Colors.white,
2022-01-29 12:35:03 +01:00
tooltip: L10n.of(context)!.close,
2021-05-25 20:41:37 +02:00
),
2021-10-14 18:09:30 +02:00
backgroundColor: const Color(0x44000000),
2021-05-25 20:41:37 +02:00
actions: [
IconButton(
2021-10-14 18:09:30 +02:00
icon: const Icon(Icons.reply_outlined),
2021-05-25 20:41:37 +02:00
onPressed: controller.forwardAction,
color: Colors.white,
2022-01-29 12:35:03 +01:00
tooltip: L10n.of(context)!.share,
2021-05-25 20:41:37 +02:00
),
if (PlatformInfos.isAndroid)
IconButton(
2022-05-05 09:13:54 +02:00
icon: const Icon(Icons.download_outlined),
onPressed: controller.saveFileAction,
color: Colors.white,
2022-05-05 09:13:54 +02:00
tooltip: L10n.of(context)!.downloadFile,
),
IconButton(
onPressed: controller.shareFileAction,
tooltip: L10n.of(context)!.share,
color: Colors.white,
icon: const Icon(Icons.share),
)
2021-05-25 20:41:37 +02:00
],
),
body: InteractiveViewer(
minScale: 1.0,
maxScale: 10.0,
onInteractionEnd: controller.onInteractionEnds,
child: Center(
child: ImageBubble(
controller.widget.event,
tapToView: false,
onLoaded: controller.widget.onLoaded,
fit: BoxFit.contain,
backgroundColor: Colors.black,
2021-05-25 20:41:37 +02:00
maxSize: false,
thumbnailOnly: false,
animated: true,
2021-05-25 20:41:37 +02:00
),
),
),
);
2020-05-16 08:02:33 +02:00
}
}