camera_with_files

Creator: coderz1093

Last updated:

0 purchases

camera_with_files Image
camera_with_files Images

Languages

Categories

Add to Cart

Description:

camera with files

Camera with image picker #
Whatsapp like UI #

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
),),);
copied to clipboard
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
),),);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.