Skip to content

therdm/image_capture_field

Repository files navigation

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

1    2    3    4    5    6   

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.

About

A field works with own controller to take user input image

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published