AutoFill doesn't work on iOS

  1. SDK Version: 40
  2. Platforms(Android/iOS/web/all): iOS

Hi, I have problem with autofill feature on iOS 14.6. I use react-native-otp-input library which allow to fullfill automatically input with code received from SMS. I have code like below:

 `<OTPInputView
              style={{width: '80%', height: 200}}
              pinCount={6}
              autoFocusOnLoad
              codeInputFieldStyle={{ backgroundColor: 'red'}}
              onCodeFilled = {(code) => {
                  console.log(`Code is ${code}, you are good to go!`)
              }}
              keyboardType="number-pad"
              onCodeChanged={(code) => {
                console.log(code);
              }}
            />`

When I received code from SMS I get hint above keyboard, but when I press this hint nothing happens.
I have content of SMS like: “Ihr App Name Authentifizierungs code: 623456”

Is anyone who had similar problem like we ?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.