We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for the package.
on iOS after taking picture and copping the image, the gallery icon is still visible and also above the rotate button :
I know I can use the canUseGallery: false param for workaround but I also need gallery access for my users in the first step.
canUseGallery: false
final success = await PermissionManager.requestCamera(request: true); if (success) { try { file = await MediaManager().generateLocalPath(); if(file != null) { //Make sure to await the call to detectEdge. bool success = await EdgeDetection.detectEdge( file!, canUseGallery: true, androidScanTitle: 'Scanner', // use custom localizations for android androidCropTitle: 'Couper', androidCropBlackWhiteTitle: 'Noir Blanc', androidCropReset: 'Recommencer', ); if (success) { if (file != null && File(file!).existsSync()) { pushCreateDoc(file!); } } } } catch (e) { print(e); } }
Is this a bug or is there a way to gone the icon after taking the shot ? Thanks
VERSION : edge_detection: ^1.1.2 (Not able to test this on android yet)
edge_detection: ^1.1.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the package.
on iOS after taking picture and copping the image, the gallery icon is still visible and also above the rotate button :
I know I can use the
canUseGallery: false
param for workaround but I also need gallery access for my users in the first step.Is this a bug or is there a way to gone the icon after taking the shot ?
Thanks
VERSION :
edge_detection: ^1.1.2
(Not able to test this on android yet)
The text was updated successfully, but these errors were encountered: