반응형
flutter 에서 카메라 기능을 구현할 때 쓰는 플러그인
camera
camera | Flutter Package
A Flutter plugin for controlling the camera. Supports previewing the camera feed, capturing images and video, and streaming image buffers to Dart.
pub.dev
여기에는 LG폰만 나타나는 버그가 있다.
바로 어두운 곳에서 사진을 찍으면 자동으로 flash가 켜지는데 LG폰은 flash가 꺼지지 않는다...
어떻게 구현을 할까 하다가
사진 찍기 전에
cameraController?.setFlashMode(FlashMode.auto);
사진 찍은 후
cameraController?.setFlashMode(FlashMode.off);
flash를 꺼주는 코드를 추가하였다!!
반응형
'# 02 > Flutter' 카테고리의 다른 글
[Flutter] WillPopScope 사용 시 iOS swipe 안돼요! (0) | 2022.11.10 |
---|---|
[Flutter] Image File Size ????? (1) | 2022.11.10 |
[Flutter] HTML \n 줄바꿈 처리 안되는 현상! (0) | 2022.10.27 |
[Flutter] Bluetooth Keyboard Error!! (0) | 2022.09.20 |
[Flutter] show Performance Overlay (0) | 2022.09.01 |