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();
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,
),
And it is DONE. You can NOW pick any image.
Access Image Data (Uint8List) by,
_controller.imageData
Access Name of the Image can be found,
_controller.imageName
And Know whether there is any image already picked or not,
_controller.isBlank
Methods in the ImageCaptureController are
To clear the data stored in the ImageCaptureController
_controller.clear();
Crop functionality added
You can use it by passing the property in the ImageCaptureField():
includeCropper: true
To fix cropper aspect ratio
cropAspectRatio : (width/height) or, any ratio in double
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.