fluffychat/lib/pages/views/image_viewer_view.dart

60 lines
1.7 KiB
Dart
Raw Normal View History

import '../image_viewer.dart';
import 'package:fluffychat/widgets/event_content/image_bubble.dart';
2020-05-16 06:02:33 +00:00
import 'package:flutter/material.dart';
2021-02-20 06:40:42 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-05-16 06:02:33 +00:00
2021-05-22 07:13:47 +00:00
class ImageViewerView extends StatelessWidget {
2021-04-10 07:06:24 +00:00
final ImageViewerController controller;
2020-05-16 06:02:33 +00:00
2021-05-22 07:13:47 +00:00
const ImageViewerView(this.controller, {Key key}) : super(key: key);
2020-05-16 06:02:33 +00:00
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
2020-05-20 17:29:26 +00:00
extendBodyBehindAppBar: true,
2020-05-16 06:02:33 +00:00
appBar: AppBar(
2020-05-20 17:29:26 +00:00
elevation: 0,
2020-05-16 06:02:33 +00:00
leading: IconButton(
icon: Icon(Icons.close),
2021-04-10 07:06:24 +00:00
onPressed: Navigator.of(context, rootNavigator: false).pop,
2020-05-16 06:02:33 +00:00
color: Colors.white,
2021-02-20 06:40:42 +00:00
tooltip: L10n.of(context).close,
2020-05-16 06:02:33 +00:00
),
2020-05-20 17:29:26 +00:00
backgroundColor: Color(0x44000000),
2020-05-16 06:02:33 +00:00
actions: [
IconButton(
2020-12-06 09:31:35 +00:00
icon: Icon(Icons.reply_outlined),
2021-04-13 14:08:28 +00:00
onPressed: controller.forwardAction,
2020-05-16 06:02:33 +00:00
color: Colors.white,
2021-02-20 06:40:42 +00:00
tooltip: L10n.of(context).share,
2020-05-16 06:02:33 +00:00
),
IconButton(
2020-12-06 09:31:35 +00:00
icon: Icon(Icons.download_outlined),
2021-04-13 14:08:28 +00:00
onPressed: controller.openFileAction,
2020-05-16 06:02:33 +00:00
color: Colors.white,
2021-02-20 06:40:42 +00:00
tooltip: L10n.of(context).downloadFile,
2020-05-16 06:02:33 +00:00
),
],
),
body: InteractiveViewer(
2021-03-04 11:28:06 +00:00
minScale: 1.0,
maxScale: 10.0,
2021-04-10 07:06:24 +00:00
onInteractionEnd: controller.onInteractionEnds,
child: Center(
child: ImageBubble(
2021-04-10 07:06:24 +00:00
controller.widget.event,
tapToView: false,
2021-04-10 07:06:24 +00:00
onLoaded: controller.widget.onLoaded,
fit: BoxFit.contain,
backgroundColor: Colors.black,
maxSize: false,
radius: 0.0,
thumbnailOnly: false,
),
),
2020-05-16 06:02:33 +00:00
),
);
}
}