Sébastien Bel

Results 48 comments of Sébastien Bel

In the tap to focus feature, we use this: ```dart OnPreviewTap( onTap: (position, flutterPreviewSize, pixelPreviewSize) { snapshot.requireData.when( onPhotoMode: (photoState) => photoState.focusOnPoint( flutterPosition: position, pixelPreviewSize: pixelPreviewSize, flutterPreviewSize: flutterPreviewSize, ), onVideoMode: (videoState)...

_I'm only talking about the Android side._ First of all, let's distinguish two things: - passive focus: the camera tries to find the correct focus on its own - auto...

I started implementing the method 1. As expected, once the auto focus is canceled and the passive focus takes the lead, you might encounter problems like this one: ![ezgif com-optimize...

Hello, Thanks for the feedback! - Displaying some kind of indicator above the preview is definitively doable, using `CameraAwesomeBuilder.custom()` or even `CameraAwesomeBuilder.awesome()` with a `previewDecoratorBuilder`. - In both case, you...

Hey @Overlord21 , I just made a PR with this example in mind. Several changes on master have not yet been published to pub.dev, but you can take a look...

Translating image analysis coordinates is not super easy, maybe you can try to take the example from the mentioned PR (`preview_overlay_example.dart`) and add your own code on top of it...

Hey @Overlord21 , we've released 1.3 which includes the mentioned PR. You might want to take a look at the [doc of the barcode overlay example](https://docs.page/Apparence-io/camera_awesome/ai_with_mlkit/reading_barcodes#scan-area).

Permissions are asked at different times - Camera: when `CamerAwesomeBuilder` appears in the widget tree. - Storage: when `CamerAwesomeBuilder` appears in the widget tree. - Microphone (optional): when starting to...

It seems that we may better respect apps orientation with this PR from Flutter: https://github.com/flutter/engine/pull/39763 Atm, there is no `SystemChrome.getPreferredOrientations()` so it's complicated to set back the app preferred orientations.

Not good news but the mentioned Flutter PR has been closed (and not merged). There's still an [issue](https://github.com/flutter/flutter/issues/95719) tracking this feature.