omni_media_picker 0.1.1
omni_media_picker: ^0.1.1 copied to clipboard
A Flutter plugin to capture multiple media from the device.
import 'package:flutter/material.dart';
import 'package:omni_media_picker/omni_media_picker.dart';
import 'package:camera/camera.dart';
import 'dart:io';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: const MainScreen(),
);
}
}
class MainScreen extends StatefulWidget {
const MainScreen({super.key});
@override
State<MainScreen> createState() => _MainScreenState();
}
class _MainScreenState extends State<MainScreen> {
List<XFile> capturedImages = [];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Omni Media Picker Demo'),
backgroundColor: Colors.purple.shade100,
),
body: Column(
children: [
// Capture button
Padding(
padding: const EdgeInsets.all(20),
child: ElevatedButton(
onPressed: () async {
final images = await OmniCameraPicker.capture(
context: context,
maxImages: 5,
);
if (images.isNotEmpty) {
setState(() {
capturedImages = images;
});
}
},
style: ElevatedButton.styleFrom(
backgroundColor: Colors.purple.shade100,
foregroundColor: Colors.black,
padding: const EdgeInsets.symmetric(horizontal: 40, vertical: 15),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
child: const Text('Capture Images'),
),
),
// Images grid
if (capturedImages.isNotEmpty) ...[
Padding(
padding: const EdgeInsets.all(16),
child: Text(
'Captured Images (${capturedImages.length})',
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
),
Expanded(
child: SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Wrap(
spacing: 12,
runSpacing: 12,
children: capturedImages.asMap().entries.map((entry) {
int index = entry.key;
XFile image = entry.value;
return GestureDetector(
onTap: () {
// Show image path in a dialog
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text('Image ${index + 1}'),
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(8),
child: Image.file(
File(image.path),
width: 200,
height: 200,
fit: BoxFit.cover,
),
),
const SizedBox(height: 16),
Text(
'Path:',
style: TextStyle(fontWeight: FontWeight.bold),
),
const SizedBox(height: 8),
SelectableText(
image.path,
style: const TextStyle(fontSize: 12),
),
],
),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text('Close'),
),
TextButton(
onPressed: () {
Navigator.pop(context);
setState(() {
capturedImages.removeAt(index);
});
},
child: const Text('Delete', style: TextStyle(color: Colors.red)),
),
],
),
);
},
child: Container(
width: (MediaQuery.of(context).size.width - 60) / 3, // 3 columns
height: (MediaQuery.of(context).size.width - 60) / 3,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.3),
blurRadius: 4,
offset: const Offset(0, 2),
),
],
),
child: ClipRRect(
borderRadius: BorderRadius.circular(12),
child: Stack(
children: [
Image.file(
File(image.path),
width: double.infinity,
height: double.infinity,
fit: BoxFit.cover,
),
Positioned(
top: 8,
right: 8,
child: Container(
padding: const EdgeInsets.all(4),
decoration: BoxDecoration(
color: Colors.black.withOpacity(0.6),
borderRadius: BorderRadius.circular(12),
),
child: Text(
'${index + 1}',
style: const TextStyle(
color: Colors.white,
fontSize: 12,
fontWeight: FontWeight.bold,
),
),
),
),
],
),
),
),
);
}).toList(),
),
),
),
] else ...[
const Expanded(
child: Center(
child: Text(
'No images captured yet.\nTap "Capture Images" to start!',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 16,
color: Colors.grey,
),
),
),
),
],
],
),
);
}
}