124 lines
4.1 KiB
Dart
124 lines
4.1 KiB
Dart
import 'dart:io';
|
|
import 'package:flutter/material.dart';
|
|
|
|
// Importations ajustées selon ton arborescence à gauche
|
|
import '../../data/models/target_type.dart';
|
|
import '../analysis/analysis_screen.dart';
|
|
|
|
class CropScreen extends StatefulWidget {
|
|
final String imagePath;
|
|
final TargetType targetType;
|
|
|
|
const CropScreen({
|
|
super.key,
|
|
required this.imagePath,
|
|
required this.targetType,
|
|
});
|
|
|
|
@override
|
|
State<CropScreen> createState() => _CropScreenState();
|
|
}
|
|
|
|
class _CropScreenState extends State<CropScreen> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: const Color(0xFF101214),
|
|
appBar: AppBar(
|
|
backgroundColor: const Color(0xFF101214),
|
|
elevation: 0,
|
|
centerTitle: true,
|
|
title: const Text(
|
|
'Validation image',
|
|
style: TextStyle(color: Colors.white, fontSize: 18),
|
|
),
|
|
leading: IconButton(
|
|
icon: const Icon(Icons.arrow_back, color: Colors.white),
|
|
onPressed: () => Navigator.pop(context),
|
|
),
|
|
),
|
|
body: Column(
|
|
children: [
|
|
// L'image capturée
|
|
Expanded(
|
|
child: Container(
|
|
margin: const EdgeInsets.all(20),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(12),
|
|
border: Border.all(color: Colors.white10),
|
|
),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(12),
|
|
child: Image.file(
|
|
File(widget.imagePath),
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
|
|
// Bouton Modifier
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 20),
|
|
child: ElevatedButton.icon(
|
|
onPressed: () {
|
|
// Logique de modification à venir
|
|
},
|
|
icon: const Icon(Icons.crop_rotate),
|
|
label: const Text('Modifier'),
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color(0xFF1A73E8),
|
|
foregroundColor: Colors.white,
|
|
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 12),
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
),
|
|
),
|
|
|
|
// Boutons du bas
|
|
Padding(
|
|
padding: const EdgeInsets.fromLTRB(20, 0, 20, 30),
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: OutlinedButton(
|
|
onPressed: () => Navigator.pop(context),
|
|
style: OutlinedButton.styleFrom(
|
|
side: const BorderSide(color: Colors.white24),
|
|
padding: const EdgeInsets.symmetric(vertical: 15),
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
child: const Text('Recommencer', style: TextStyle(color: Colors.white)),
|
|
),
|
|
),
|
|
const SizedBox(width: 16),
|
|
Expanded(
|
|
child: ElevatedButton(
|
|
onPressed: () {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (_) => AnalysisScreen(
|
|
imagePath: widget.imagePath,
|
|
targetType: widget.targetType,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color(0xFF1A73E8),
|
|
foregroundColor: Colors.white,
|
|
padding: const EdgeInsets.symmetric(vertical: 15),
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
|
|
),
|
|
child: const Text('Valider', style: TextStyle(fontWeight: FontWeight.bold)),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
} |