TextInput's autoCorrect's behaviour is different in iPhone SE compared to other iPhone modals

I have React-Native TextInput with autoCorrect prop

<TextInput
     placeholder={placeholderText}
     value={this.props.value}
     onChangeText={this.props.onChange}
     autoCorrect={false}
/>

If the autoCorrect is set to false, Then there are no predictions in iPhone 6(iOS 12) and iPhone 11(iOS 15), Which means working as expected. But surprisingly in iPhone SE(iOS 15) still predictions are appearing though autoCorrect is set to false. Which means predictions are appearing irrespective of autoCorrect value in iPhone SE.

Can some one explain the reason behind this phenomenon please? Thank You.

If you do not have any expertise in React-Native, At least can you please let m know that, Will there be any functionality differences between iPhone SE and the iPhone modals?

Thank You.

TextInput's autoCorrect's behaviour is different in iPhone SE compared to other iPhone modals
 
 
Q