-
Notifications
You must be signed in to change notification settings - Fork 2
Description
We are using DigioRNComponent from react-native-digio-sdk to get kyc.
But after perfoming the operations we are not able to get the response data from SDK.
code:
`
import { DigioRNComponent } from 'react-native-digio-sdk';
export default class MyComponent extends Component {
constructor(props) {
super(props);
this.state = {
digioDocumentId: '',
digioUserIdentifier: '',
digioLoginToken: '',
options: {
"environment": "sandbox",
"logo": "",
"theme": {
"primaryColor": #ffb43a,
"secondaryColor": #b4b4b4
}
}
}
}
onSuccess = (t) => {
console.log(t + " Response from Digio SDk ");
}
onCancel = () => {
console.log("Cancel Response from Digio SDk ");
}
componentDidMount = () => { }
render() {
return (
);
}
};
`
Expected Outcome: Open digio screen & perform kyc verification & go back with success or failure response.
Real Outcome: Open digio screen & perform kyc & stuck on kyc successful screen without any success or failure response.
Platform: Android
React-native version : "0.61.3" & "0.64.3"
React-native-webview version : "11.17.2"
