Apparence-io / CamerAwesome

📸 Embedding a camera experience within your own app shouldn't be that hard. A flutter plugin to integrate awesome Android / iOS camera experience.
https://ApparenceKit.dev
MIT License
949 stars 240 forks source link

different result on different IOS device #159

Closed azazadev closed 1 year ago

azazadev commented 1 year ago

I run a simple example on different IOS device but result is not the same

CameraAwesomeBuilder.awesome(
            availableModes: [CaptureModes.VIDEO],
            sensor: Sensors.FRONT,
            flashMode: CameraFlashes.NONE,
            initialCaptureMode: CaptureModes.VIDEO,
            picturePathBuilder: (captureMode) => _path(captureMode),
            videoPathBuilder: (captureMode) => _path(captureMode),
            onMediaTap: (mediaCapture) {
              OpenFile.open(mediaCapture.filePath);
            },
          )

Iphone 6s ( IOS 15.2 )

iphone6s

Iphone 11 pro ( IOS 16.0.3 )

iphone11pro

any idea how we can have full screen like the result on Iphone 6s

g-apparence commented 1 year ago

This should now be fixed. You can change the preview fit directly from the builder now.

Closing for now. If you have any other issue with this feel free to open another bug.

azazadev commented 1 year ago

working fine ! Merci