2021-04-15 13:03:14 +02:00
|
|
|
import '../image_viewer.dart';
|
2021-05-22 09:24:39 +02:00
|
|
|
import 'package:fluffychat/widgets/event_content/image_bubble.dart';
|
2020-05-16 08:02:33 +02:00
|
|
|
import 'package:flutter/material.dart';
|
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-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
|
|
|
|
2021-05-22 09:13:47 +02: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(
|
|
|
|
icon: Icon(Icons.close),
|
|
|
|
onPressed: Navigator.of(context).pop,
|
|
|
|
color: Colors.white,
|
|
|
|
tooltip: L10n.of(context).close,
|
|
|
|
),
|
|
|
|
backgroundColor: Color(0x44000000),
|
|
|
|
actions: [
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.reply_outlined),
|
|
|
|
onPressed: controller.forwardAction,
|
|
|
|
color: Colors.white,
|
|
|
|
tooltip: L10n.of(context).share,
|
|
|
|
),
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.download_outlined),
|
2021-07-11 17:12:56 +02:00
|
|
|
onPressed: controller.saveFileAction,
|
2021-05-25 20:41:37 +02:00
|
|
|
color: Colors.white,
|
|
|
|
tooltip: L10n.of(context).downloadFile,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
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,
|
2021-01-18 07:56:02 +01:00
|
|
|
backgroundColor: Colors.black,
|
2021-05-25 20:41:37 +02:00
|
|
|
maxSize: false,
|
|
|
|
radius: 0.0,
|
|
|
|
thumbnailOnly: false,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2020-05-16 08:02:33 +02:00
|
|
|
}
|
|
|
|
}
|