I am creating a flutter web app and I am using firebase auth to authenticate users with phone number.
await _auth.signInWithPhoneNumber(phoneNumber);
After executing this command, a reCAPTCHA banner appears at the bottom right corner of the page. After completing the reCAPTCHA test, the banner doesn't come off. Even after confirming the sms:
await confirmationResult!.confirm(smsCode);
How can I remove this banner completely?
Apperently it is easy:
final el = window.document.getElementById('__ff-recaptcha-container');
if (el != null) {
el.style.visibility = 'hidden';
}