You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello guys, the plugin works very well on IOS. But i got this issue.
After user take the photo, it requires to click multiple times on "OK" button to comeback to the app screen. This is bug or is there any ways to go through. Thank you guys.
This is my implementation based on the official doc.
onTakePhoto(){constoptions : camera.CameraOptions={width: 250,height: 250,keepAspectRatio: true,saveToGallery: false,allowsEditing: false,/** * The initial camera. Default "rear". * The current implementation doesn't work on all Android devices, in which case it falls back to the default behavior. */// cameraFacing: "front" | "rear" }camera.takePicture(options).then(imageAsset=>{constsource=newImageSource();console.log("Result is an image asset instance",imageAsset);source.fromAsset(imageAsset).then(source=>{letfingerImage=<Image>this.fingerImageRef.nativeElement;
fingerImage.imageSource = source;
})}).then(err=>console.log(err))return;}
Hello guys, the plugin works very well on IOS. But i got this issue.
After user take the photo, it requires to click multiple times on "OK" button to comeback to the app screen. This is bug or is there any ways to go through. Thank you guys.
This is my implementation based on the official doc.
Link Image : https://pasteboard.co/IYqbkLx.png
The text was updated successfully, but these errors were encountered: