I'm currently working on fine-tuning the autocomplete suggestions for my registration form. Within the react native elements input, I've already implemented fields for username, email, and password. Specifically for the email field, I have configured:
textContentType={'emailAddress'}
keyboardType={'email-address'}
autoCompleteType={'email'}
However, despite these settings, the keyboard only provides password suggestions for autocompletion. What's even more perplexing is that adding another input resolves the issue with email autocomplete. Is there a specific aspect I should be focusing on to address this?
EDIT1: Through further testing, I discovered that while the keyboard indicates it's offering passwords for autocompletion, pressing it actually populates all fields instead.