Kaung Htet Hein

Results 2 comments of Kaung Htet Hein

``` import Picker, { ImageOrVideo } from 'react-native-image-crop-picker' import FaceDetection from '@react-native-ml-kit/face-detection' Picker.openPicker({}) .then(handleSelectedImage) .catch(handlePermissionError) const handleSelectedImage = (image: ImageOrVideo) => { if (!hasFace(image?.path)) { return } } const hasFace...