image_crop_compress 0.0.6
image_crop_compress: ^0.0.6 copied to clipboard
A high-performance Flutter image toolkit. Crop, compress, resize, and convert with native APIs and a beautiful adaptive UI.
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:image_crop_compress/image_crop_compress.dart';
void main() {
runApp(const ImageEditorExampleApp());
}
class ImageEditorExampleApp extends StatelessWidget {
const ImageEditorExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Image Editor Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
useMaterial3: true,
),
home: const ProfileScreen(),
);
}
}
class ProfileScreen extends StatefulWidget {
const ProfileScreen({super.key});
@override
State<ProfileScreen> createState() => _ProfileScreenState();
}
class _ProfileScreenState extends State<ProfileScreen> {
File? _profileImage;
final ImagePicker _picker = ImagePicker();
Future<void> _pickImage() async {
final XFile? xFile = await _picker.pickImage(source: ImageSource.gallery);
if (xFile == null) return;
if (!mounted) return;
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => ImageEditor(
image: File(xFile.path),
theme: ImageEditorTheme(
appBarBackgroundColor: Colors.blue.shade800,
textStyle: const TextStyle(color: Colors.white, fontSize: 16),
scaffoldBackgroundColor: Colors.lightBlue.shade50,
),
onComplete: (ProcessedImage result) {
debugPrint('--- IMAGE PROCESSING COMPLETE ---');
debugPrint('Path: ${result.file.path}');
debugPrint('XFile: ${XFile(result.file.path).path}');
debugPrint('Size: ${result.sizeInBytes} bytes');
setState(() {
_profileImage = result.file;
});
Navigator.pop(context);
},
onCancel: () {
Navigator.pop(context);
},
),
),
);
}
void _onConfirm() {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const ThankYouScreen()),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Setup Profile'),
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(24.0),
child: Column(
children: [
const SizedBox(height: 20),
Center(
child: Stack(
children: [
CircleAvatar(
radius: 60,
backgroundColor: Colors.grey.shade300,
backgroundImage: _profileImage != null
? FileImage(_profileImage!)
: null,
child: _profileImage == null
? const Icon(Icons.person, size: 60, color: Colors.grey)
: null,
),
Positioned(
bottom: 0,
right: 0,
child: GestureDetector(
onTap: _pickImage,
child: Container(
padding: const EdgeInsets.all(8),
decoration: const BoxDecoration(
color: Colors.blue,
shape: BoxShape.circle,
),
child: const Icon(
Icons.edit,
color: Colors.white,
size: 20,
),
),
),
),
],
),
),
const SizedBox(height: 40),
const TextField(
decoration: InputDecoration(
labelText: 'First Name',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
const TextField(
decoration: InputDecoration(
labelText: 'Last Name',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
const TextField(
decoration: InputDecoration(
labelText: 'Email Address',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
const TextField(
decoration: InputDecoration(
labelText: 'Username',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
const TextField(
decoration: InputDecoration(
labelText: 'Bio',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 32),
SizedBox(
width: double.infinity,
height: 50,
child: ElevatedButton(
onPressed: _onConfirm,
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),
child: const Text('Confirm', style: TextStyle(fontSize: 16)),
),
),
],
),
),
);
}
}
class ThankYouScreen extends StatelessWidget {
const ThankYouScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Success')),
body: const Center(
child: Text(
'Thank You!',
style: TextStyle(
fontSize: 32,
fontWeight: FontWeight.bold,
color: Colors.blue,
),
),
),
);
}
}