React Native wrapper for Biometric Identity SDK
npm install @hexar/biometric-identity-sdk-react-nativeReact Native wrapper for the Biometric Identity SDK.
``bash`
npm install @hexar/biometric-identity-sdk-react-nativeor
yarn add @hexar/biometric-identity-sdk-react-native
`bash`
npm install react-native-vision-camera react-native-permissions
Add to your Info.plist:
`xml`
Add to your AndroidManifest.xml:
`xml`
`tsx
import { BiometricIdentityFlow } from '@hexar/biometric-identity-sdk-react-native';
function App() {
return (
console.log('Validation complete:', result);
}}
onError={(error) => {
console.error('Validation error:', error);
}}
theme={{
primaryColor: '#6366F1',
backgroundColor: '#FFFFFF',
}}
language="en"
/>
);
}
``
See main SDK documentation for detailed API reference.
MIT