47 lines
1.4 KiB
Dart
Executable File
47 lines
1.4 KiB
Dart
Executable File
import 'dart:io';
|
|
|
|
import 'package:filcnaplo/helpers/share_helper.dart';
|
|
import 'package:filcnaplo/theme/colors/colors.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
|
import 'package:photo_view/photo_view.dart';
|
|
|
|
class ImageView extends StatelessWidget {
|
|
const ImageView(this.path, {super.key});
|
|
|
|
final String path;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Material(
|
|
color: Theme.of(context).scaffoldBackgroundColor,
|
|
child: SafeArea(
|
|
minimum: const EdgeInsets.only(top: 24.0),
|
|
child: Scaffold(
|
|
appBar: AppBar(
|
|
leading: BackButton(color: AppColors.of(context).text),
|
|
actions: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(right: 8.0),
|
|
child: IconButton(
|
|
onPressed: () => ShareHelper.shareFile(path),
|
|
icon: Icon(FeatherIcons.share2, color: AppColors.of(context).text),
|
|
splashRadius: 24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
body: PhotoView(
|
|
imageProvider: FileImage(File(path)),
|
|
maxScale: 4.0,
|
|
minScale: PhotoViewComputedScale.contained,
|
|
backgroundDecoration: BoxDecoration(
|
|
color: Theme.of(context).scaffoldBackgroundColor,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|