The captcha is not being rendered properly. It's super small, even though the container is 100% width and 80px high.
<View style={{ width: '100%', height: 80, borderWidth: 1}}>
<ReCaptcha
onReady={() => console.log("Captcha is ready")}
siteKey={site_key}
url={url}
action={'verify'}
reCaptchaType={1} //invisible
containerStyle={{ height: '100%', width: '100%', marginButton: 0 }}
onExecute={this.captureResponseToken.bind(this)}
/>
</View>