kiwi-bop / camera_picker

Flutter camera picker package to take multiple images at once

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Camera picker

This package will allow you to take multiple camera picture at once and return them for you to process them.

Features

Preview Preview 2

Getting started

This package uses the camera package, so please follow the setup for iOS and Android.

Usage

Full example at example folder.

final results = await Navigator.of(context).push(
  MaterialPageRoute(builder: (context) => CameraPicker())
);
if (results != null) {
  //Do whatever you want with the files.
}

Additional information

You can customize colors, show/icon the different buttons and specify minimum and maximum number of picture you want.

To see full list of customization please read CameraPicker.

About

Flutter camera picker package to take multiple images at once

License:Other


Languages

Language:Dart 92.1%Language:Ruby 5.6%Language:Swift 1.7%Language:Kotlin 0.5%Language:Objective-C 0.2%