camera_camera
camera_camera copied to clipboard
Fast tapping on take picture button throws exception
Just need a try, catch block in takePhoto method of CameraCameraController to solve this.
void takePhoto() async {
try {
final file = await _controller.takePicture();
onPath(file.path);
} catch (e) {}
}
Any update here? We have the same problem.
Created a PR #78