2020-09-11 20:26:06 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import '../pages/media_view.dart';
|
2020-09-16 22:53:04 +02:00
|
|
|
import '../util/goto.dart';
|
2020-09-11 20:26:06 +02:00
|
|
|
|
2020-09-30 19:05:00 +02:00
|
|
|
/// If the media is pressed, it opens itself in a [MediaViewPage]
|
2020-09-11 20:26:06 +02:00
|
|
|
class FullscreenableImage extends StatelessWidget {
|
|
|
|
final String url;
|
|
|
|
final Widget child;
|
|
|
|
|
2020-09-11 20:36:19 +02:00
|
|
|
const FullscreenableImage({
|
2021-04-09 00:11:44 +02:00
|
|
|
Key? key,
|
|
|
|
required this.url,
|
|
|
|
required this.child,
|
2020-09-11 20:36:19 +02:00
|
|
|
}) : super(key: key);
|
|
|
|
|
2020-09-11 20:26:06 +02:00
|
|
|
@override
|
2020-09-11 21:21:58 +02:00
|
|
|
Widget build(BuildContext context) => InkWell(
|
2020-10-06 22:28:10 +02:00
|
|
|
onTap: () => goToMedia(context, url),
|
2020-09-11 21:21:58 +02:00
|
|
|
child: Hero(
|
|
|
|
tag: url,
|
|
|
|
child: child,
|
|
|
|
),
|
|
|
|
);
|
2020-09-11 20:26:06 +02:00
|
|
|
}
|