Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

205
Views
React Native Expo - iOS autofill password pops up on signup screen and if you select "Choose my own password" it clears but the state does not

I'm using Formik and Yup for my auth flow components. Currently, I'm running into an issue where my iOS device pops open the suggested password dialogue and if you select the option to choose your own password it clears but doesn't clear the state.

Here is a video I made of this behavior:

enter image description here

Here is the code for the Formik and Yup.

               <View style={styles.inputFieldContainer}>
                  <CustomText size={14}>Password</CustomText>
                  <View style={styles.inputField}>
                    <TextInput
                      autoCapitalize='none'
                      autoCorrect={false}
                      blurOnSubmit={true}
                      keyboardType='default'
                      maxLength={20}
                      onChangeText={handleChange('password')}
                      ref={passwordRef}
                      secureTextEntry={true}
                      selectionColor={Colors.primary}
                      style={styles.textInput}
                      value={values.password}
                      onSubmitEditing={() => {
                        confirmPasswordRef.current.focus();
                      }}
                    />
                  </View>
                </View>
                <View style={styles.inputFieldContainer}>
                  <CustomText size={14}>Confirm password</CustomText>
                  <View style={styles.inputField}>
                    <TextInput
                      autoCapitalize='none'
                      autoCorrect={false}
                      blurOnSubmit={true}
                      keyboardType='default'
                      maxLength={20}
                      onChangeText={handleChange('confirmPassword')}
                      ref={confirmPasswordRef}
                      secureTextEntry={true}
                      selectionColor={Colors.primary}
                      style={styles.textInput}
                      value={values.confirmPassword}
                      onSubmitEditing={() => {
                        if (allValid) handleSubmit();
                      }}
                    />
                  </View>
              </View>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!