gallery_camera_image_picker_view 0.0.2 copy "gallery_camera_image_picker_view: ^0.0.2" to clipboard
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,
          ),
        ),
      ),
    );
  }
}
6
likes
140
points
41
downloads

Publisher

unverified uploader

Weekly Downloads

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.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_reorderable_grid_view, image_picker, mobkit_dashed_border, photo_view

More

Packages that depend on gallery_camera_image_picker_view