gallery_camera_image_picker_view 0.0.2
gallery_camera_image_picker_view: ^0.0.2 copied to clipboard
A complete widget from which can easily take image from camera & pick multiple images from device and display them in UI. Also images can be re-ordered and removed easily.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:gallery_camera_image_picker_view/gallery_camera_image_picker_view.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatefulWidget {
const MainApp({super.key});
@override
State<MainApp> createState() => _MainAppState();
}
class _MainAppState extends State<MainApp> {
final controller = GalleryCameraImagePickerController();
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: GallaryCameraImagePickerView(
controller: controller,
),
),
),
);
}
}