Password saving popup for iOS
I used react-native-keychain library for password saving option in iOS (react native) then,
called onpress Login
const credentials= await Keychain.setGenericPassword(email, password)
on successful login
Keychain.getGenericPassword().then(res => console.log("Keychain saved credentials", res)).catch(err => console.log(err))
then it returns
Keychain saved credentials", {username: "[email protected]", password: "xxxxxx", storage: "keychain", service: "xxx.xyz.vvv"}
But the problem is that it doesn't ask to save the password popup after submitting the credentials on an iOS phone. Does anyone have any idea about this?
@SruthiStk maybe you can try this : https://reactnative.dev/docs/0.70/textinput#textcontenttype-ios
This will help https://www.youtube.com/watch?v=J0OSn7s9YiA&list=PLQhQEGkwKZUrempLnmxjt7ZCZJu1W3p2i&index=15