React Native

The React Native SDK provides a wrapper around the Checker SDK

The React Native SDK provides a wrapper around the Checker SDK, supporting both iOS and Android platforms with native bridge implementation.

<PremblyIdentityWidget
isVisible={isVisible}
widgetKey="your_widget_key_here"
widgetId="your_widget_id_here"
email="[email protected]"
phone="+2348012345678"
firstName="John"
lastName="Doe",
metadata: {transactionId: "0987265363728"}
callback={(response) => {
console.log('Widget Response:', response);
if (response.status === 'closed' || response.status === 'error_display_closed' || response.status === 'success') {
setIsVisible(false);
}
}}
/>


Did this page help you?