Hi 👋 Thanks for the great work on react-native-ml-kit.
I’d like to request gender identification support as part of the face detection or ML APIs. This would be useful for analytics, personalization, and accessibility features.
Proposed API:
faces[0].gender; // 'male' | 'female' | 'unknown'
faces[0].genderConfidence; // number (0–1)
Optional flag:
FaceDetector.detect(imageUri, { enableGender: true });