image_capture_field

Last updated:

0 purchases

image_capture_field Image
image_capture_field Images
Add to Cart

Description:

image capture field

image_capture_field #
ImageCaptureField is as easy-to-use as a TextField which works with it's own controller to take image input with inbuilt optional image cropper
Simple to use: Just Follow below 2 steps #
Step 1. Define a ImageCaptureController #
final _controller = ImageCaptureController();
copied to clipboard
Step 2. Put as a child of any widget or may be as one of the children of a Column #
Just like below Code put it anywhere in your code
ImageCaptureField(
controller: _controller,
),
copied to clipboard
And it is DONE. You can NOW pick any image. #
Access Image Data (Uint8List) by,
_controller.imageData
copied to clipboard
Access Name of the Image can be found,
_controller.imageName
copied to clipboard
And Know whether there is any image already picked or not,
_controller.isBlank
copied to clipboard
Methods in the ImageCaptureController are #
To clear the data stored in the ImageCaptureController
_controller.clear();
copied to clipboard
Crop functionality added #
You can use it by passing the property in the ImageCaptureField(): #
includeCropper: true
copied to clipboard
To fix cropper aspect ratio #
cropAspectRatio : (width/height) or, any ratio in double
copied to clipboard
Some Screenshots #

   
   
   
   
   
   

This project is a starting point for a Dart
package,
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.

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.