I am using Flutter image_picker library in this way to click images from camera. I want the camera screen to be overlapped by a png image which contains custom wire-frame for capture guidance.
ImagePicker _picker = ImagePicker();
XFile? pickedImage = await _picker.pickImage(source: ImageSource.camera);
I tried different approaches but they are not working.
I don't think you can do it using the
image_pickerlibrary as it opens the native camera of the phone.For more flexibility, you could try
camerawesome