gallery_camera_image 0.0.9 copy "gallery_camera_image: ^0.0.9" to clipboard
gallery_camera_image: ^0.0.9 copied to clipboard

Flutter plugin for Android and iOS supports cropping & picking images from the image library, and taking new pictures with the camera.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:gallery_camera_image/gallery_camera_image.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: GalleryCamareImage(),
    );
  }
}
4
likes
100
pub points
0%
popularity

Publisher

unverified uploader

Flutter plugin for Android and iOS supports cropping & picking images from the image library, and taking new pictures with the camera.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

camera, flutter, image_cropper, image_picker, permission_handler

More

Packages that depend on gallery_camera_image