mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
35 lines
959 B
Dart
35 lines
959 B
Dart
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:comunic/utils/intl_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:photo_view/photo_view.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
/// Full screen image details
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class FullScreenImageRoute extends StatefulWidget {
|
|
final String url;
|
|
|
|
FullScreenImageRoute(this.url) : assert(url != null);
|
|
|
|
@override
|
|
_FullScreenImageRouteState createState() => _FullScreenImageRouteState();
|
|
}
|
|
|
|
class _FullScreenImageRouteState extends State<FullScreenImageRoute> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(tr("Image")!),
|
|
actions: [
|
|
IconButton(
|
|
icon: Icon(Icons.launch), onPressed: () => launch(widget.url))
|
|
],
|
|
),
|
|
body: PhotoView(imageProvider: CachedNetworkImageProvider(widget.url)),
|
|
);
|
|
}
|
|
}
|