You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
// Dart imports:
|
|
import 'dart:io';
|
|
import 'dart:ui';
|
|
|
|
// Flutter imports:
|
|
import 'package:flutter/material.dart';
|
|
|
|
// Package imports:
|
|
import 'package:get/get.dart';
|
|
|
|
// Project imports:
|
|
import 'package:akuCommunity/const/resource.dart';
|
|
import 'package:akuCommunity/constants/api.dart';
|
|
|
|
class BeeImagePreview extends StatefulWidget {
|
|
final File file;
|
|
final String path;
|
|
BeeImagePreview.file({Key key, @required this.file})
|
|
: path = null,
|
|
super(key: key);
|
|
|
|
BeeImagePreview.path({Key key, @required this.path})
|
|
: file = null,
|
|
super(key: key);
|
|
|
|
@override
|
|
_BeeImagePreviewState createState() => _BeeImagePreviewState();
|
|
}
|
|
|
|
class _BeeImagePreviewState extends State<BeeImagePreview> {
|
|
Widget get image {
|
|
if (widget.file == null)
|
|
return Hero(
|
|
tag: widget.path,
|
|
child: FadeInImage.assetNetwork(
|
|
placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
|
|
image: API.image(widget.path),
|
|
),
|
|
);
|
|
else
|
|
return Hero(
|
|
tag: widget.file.hashCode,
|
|
child: Image.file(widget.file),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GestureDetector(
|
|
onTap: Get.back,
|
|
child: Scaffold(
|
|
backgroundColor: Colors.black54,
|
|
body: InteractiveViewer(
|
|
boundaryMargin: EdgeInsets.all(48),
|
|
minScale: 0.2,
|
|
maxScale: 10,
|
|
child: Center(child: image),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|