“React Native Hasseld Field” Kod odpowiedzi

React Native Password Wprowadzanie hasła

<TextInput secureTextEntry={true} style={styles.default} value="abc" />
Strange Seahorse

reaguj natywne hasło

// well designed library to check your password strength

import { PasswordMeter } from 'react-native-password-meter';

// ...

  const [password, setPassword] = React.useState({ value: '', error: '' });
  const [passwordScore, setPasswordScore] = React.useState(0);
  const _updateScore = (val: any) => {
    setPasswordScore(val);
  };

  <TextInput
    style={{
      height: 50,
      borderColor: 'gray',
      borderWidth: 1,
      width: '100%',
      borderRadius: 6,
      color: 'white',
      padding: 10,
    }}
    returnKeyType="done"
    value={password.value}
    onChangeText={(text) => setPassword({ value: text, error: '' })}
    secureTextEntry={true}
  />
  <PasswordMeter
    password={password.value}
    onResult={(val) => {
    _updateScore(val);
    }}
  />
Vivacious Vendace

React Native Hasseld Field

10000134927875
Fantastic Fish

Odpowiedzi podobne do “React Native Hasseld Field”

Pytania podobne do “React Native Hasseld Field”

Więcej pokrewnych odpowiedzi na “React Native Hasseld Field” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu