hello can you help me if I'm using the component correctly, I can not render the view of the captcha
"react-native-recaptcha-v3": "0.0.13",
import ReCaptcha from 'react-native-recaptcha-v3'
onReady(value) {
console.log("Captcha value:", value);
}
onExecute(value) {
console.log("Captcha value:", value);
}
<ReCaptcha
containerStyle={{height:200}}
siteKey='SITEKEY'
url='DOMAIN'
action='verify'
reCaptchaType={2}
onReady={this.onReady.bind(this)}
onExecute={this.onExecute.bind(this)}
hello can you help me if I'm using the component correctly, I can not render the view of the captcha
"react-native-recaptcha-v3": "0.0.13",
import ReCaptcha from 'react-native-recaptcha-v3'
onReady(value) {
console.log("Captcha value:", value);
}
onExecute(value) {
console.log("Captcha value:", value);
}
<ReCaptcha
containerStyle={{height:200}}
siteKey='SITEKEY'
url='DOMAIN'
action='verify'
reCaptchaType={2}
onReady={this.onReady.bind(this)}
onExecute={this.onExecute.bind(this)}