This is the UI i am trying to get in my flutter application,
Tried with camera plugin but don’t know to costomise it can any one provide a full code for this have been stuck with this for more than 3 days,
This is the UI i am trying to get in my flutter application,
Tried with camera plugin but don’t know to costomise it can any one provide a full code for this have been stuck with this for more than 3 days,
2
Answers
Maybe you can check the third-party package like
image_editor
andextended_image
(Github)You can create a new ExtendedImage with edit mode
And if you want the border to be a circle, you may need to pass a custom
cornerPainter
param to the config when creating ExtendedImageHowever you may need to create a cornerPainter class yourself if you want the image edit UI to be highly customized, and you can check the github repo of
extended_image
for more info.you can try this package to achieve both the ui and to crop circular crop_your_image
sample code
and when crop use the
.cropcircle()
method to crop the image circular