0

I have two secureTextEntry fields, one for password and one for retype-password. Testing this on iOS emulator I get the jumping behaviour demonstrated in this video.

If I turn off secureTextEntry in just the second password field, the jumping behaviour stops, and everything works normally.

Has anybody else seen this or know why it's happening?

Relevant code snippets below:

<TextInput
  placeholder="Password"
  value={passwordVal}
  onChangeText={setPasswordValue}
  secureTextEntry={true}
/>
Password
<TextInput/>

<TextInput
  placeholder="Retype Password"
  value={retypeVal}
  onChangeText={setRetypeVal}
  secureTextEntry={true}
/>
Retype Password
<TextInput/>

Andrew Einhorn
  • 741
  • 8
  • 23

1 Answers1

0

I don't think that is related to secureTextEntry. Maybe you are using some custom third-party components that they are causing this problem.