mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 01:15:44 -06:00
123 lines
3.7 KiB
Dart
123 lines
3.7 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:paperless_mobile/generated/l10n.dart';
|
|
import 'package:photo_view/photo_view.dart';
|
|
|
|
typedef DeleteCallback = void Function();
|
|
typedef OnImageOperation = void Function(File);
|
|
|
|
class ScannedImageItem extends StatefulWidget {
|
|
final File file;
|
|
final DeleteCallback onDelete;
|
|
//final OnImageOperation onImageOperation;
|
|
|
|
final int index;
|
|
final int totalNumberOfFiles;
|
|
|
|
const ScannedImageItem({
|
|
Key? key,
|
|
required this.file,
|
|
required this.onDelete,
|
|
required this.index,
|
|
required this.totalNumberOfFiles,
|
|
//required this.onImageOperation,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
State<ScannedImageItem> createState() => _ScannedImageItemState();
|
|
}
|
|
|
|
class _ScannedImageItemState extends State<ScannedImageItem> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GestureDetector(
|
|
onTap: () => _showImage(context),
|
|
child: _buildImageItem(context),
|
|
);
|
|
}
|
|
|
|
Widget _buildImageItem(BuildContext context) {
|
|
final borderRadius = BorderRadius.circular(12);
|
|
return ClipRRect(
|
|
child: Card(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: borderRadius,
|
|
),
|
|
clipBehavior: Clip.antiAliasWithSaveLayer,
|
|
child: Stack(
|
|
clipBehavior: Clip.antiAliasWithSaveLayer,
|
|
children: [
|
|
Align(
|
|
alignment: Alignment.topCenter,
|
|
child: ClipRRect(
|
|
borderRadius: borderRadius,
|
|
child: SizedBox(
|
|
height: 100,
|
|
child: Stack(
|
|
children: [
|
|
SizedBox(
|
|
width: double.infinity,
|
|
height: 100,
|
|
child: FittedBox(
|
|
fit: BoxFit.fill,
|
|
clipBehavior: Clip.antiAliasWithSaveLayer,
|
|
alignment: Alignment.center,
|
|
child: Image.file(
|
|
widget.file,
|
|
),
|
|
),
|
|
),
|
|
Positioned(
|
|
top: 0,
|
|
right: 0,
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 8.0,
|
|
vertical: 4.0,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: Theme.of(context).colorScheme.background,
|
|
borderRadius: const BorderRadius.only(
|
|
bottomLeft: Radius.circular(12),
|
|
),
|
|
),
|
|
child: Text(
|
|
"${widget.index + 1}/${widget.totalNumberOfFiles}",
|
|
style: Theme.of(context).textTheme.bodySmall,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: Alignment.bottomCenter,
|
|
child: TextButton(
|
|
onPressed: widget.onDelete,
|
|
child: Text("Remove"),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void _showImage(BuildContext context) {
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute(
|
|
builder: (context) => Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(
|
|
"${S.of(context).scannerPageImagePreviewTitle} ${widget.index + 1}/${widget.totalNumberOfFiles}"),
|
|
),
|
|
body: PhotoView(imageProvider: FileImage(widget.file)),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|