How to solve Camera preview is blur if overlay form is used with Camera Widget

You have created app and used a camera widget and using overlay like below:

You see camera preview as blur. It could be focusMode issue. Please try adding below code in form controller and attach to form preShow.

setFocusModeContinous: function() {
    this.view.flxCamera.cameraFrame.cameraOptions={
      focusMode: constants.CAMERA_FOCUS_MODE_CONTINUOUS
    };

Hello Madhukar , is it possible for you to attach sample app for those who would like to import and see it ?