Universal Links without Password AutoFill

I've setup applinks for Universal Links purposes on my app. But I noticed that setting up applinks also sets up Password AutoFill. Upon logging in I don't want my users to be prompted to Save Password because of the way we use our subdomains. How can I disable Password AutoFill while retaining Universal Links capability, and without disabling secureTextEntry on my UITextField?

Setting the text content type of your text fields is what enables autofill to work correctly. A workaround for your question here could be setting the text content type differently, although beware the text entering for your user could be a worse user experience if you remove .username or .password from the text field.

https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_a_text_input_view

Universal Links without Password AutoFill
 
 
Q