TextInput textContentType='newPassword' not suggesting passwords on iOS

I am currently building an app that has multiple components that are used for creating new passwords. At one point they used to provide the iOS strong password suggestions and store these in the keychain. All of sudden they stopped working a while ago. I think it may have been when I updated my phone to iOS 14 but can’t be sure about this.

Today I installed the expo client app on an older iPad running iOS 12.5 and the password autofill/suggestions are working properly on there. This makes me think it stopped working when I went from iOS 13 to 14.

An example of one of the inputs:

<TextInputContainer 
  iconName='lock' 
  placeholder='Password' 
  textContentType='newPassword' 
  onChangeText={(t) => onChangePassword(t)} 
  inputRef={el => textInputs.password = el}
  isInvalid={isInvalid.password}
  autoCapitalize='none'
  enablesReturnKeyAutomatically={true}
  autoCompleteType='password'
  autoCorrect={false}
  returnKeyType='next'
  onSubmitEditing={() => textInputs.confirmPassword.focus()}
  passwordRules="required: lower; required: upper; required: digit; required: [-]; minlength: 15;"
/>

contains a with the following code:

<TextInput 
  style={[CS.textInput, (props.isInvalid && CS.textInputInvalid), props.inputStyle]} 
  placeholderTextColor={Colors.lightBlue} 
  selectionColor={Colors.yellow} 
  secureTextEntry={secure}
  ref={props.inputRef}
  {...props} // Inherit any props passed to it; e.g., placeholder, onChangeText
/>

I haven’t been able to find any information regarding this feature being broken in iOS 14 or any way to get it working again. Any help or advice would be greatly appreciated. Thanks