camera_with_files 0.0.7 copy "camera_with_files: ^0.0.7" to clipboard
camera_with_files: ^0.0.7 copied to clipboard

Make a Camera Module With Gallery View. Its Looks Like whatsapp Camera Module.

Camera with image picker #

Whatsapp like UI #

N|Solid

Camera with image picker works on android, ios and Web.

  • Multiple image selection.
  • optional single image selection.
  • camera switching
  • flash light

Usage #

Navigate to the camerApp page and after selecting image or taking photo from camera will return the selected list of files

For Multiple image selection #

List<File> data = await Navigator.of(context).push(MaterialPageRoute<List<File>>(
builder:(BuildContext context)=> const CameraApp(
//multiple image selection flag
isMultiple :true
),),);

For Single image selection #

data[0] will contain the file.

List<File> data = await Navigator.of(context).push(MaterialPageRoute<List<File>>(
builder:(BuildContext context)=> const CameraApp(
//multiple image selection flag
isMultiple :false
),),);
21
likes
0
pub points
77%
popularity

Publisher

unverified uploader

Make a Camera Module With Gallery View. Its Looks Like whatsapp Camera Module.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

camera, file, flutter, flutter_image_compress, flutter_sliding_up_panel, image_gallery_saver, image_picker, permission_handler, photo_gallery

More

Packages that depend on camera_with_files