Forms

Password Input

Text inputs enable seamless data entry and editing, offering clear, interactive fields for a more efficient and user-friendly experience.

AA

WCAG 2.1 accessibility compliant

Default

Label

Enter your password

Supplementary information

Populated

Label

••••••••

Supplementary information

Active

Label

Supplementary information

Active / User typing

Label

•••••

Supplementary information

Error

Label

••••••••

Supplementary information

Disabled

Label

Supplementary information

React Native



<View>
  <Label style={styles.label} nativeID="passwordLabel" accessibilityRole="text">
    Password
  </Label>
  <View className="relative">
    <Input
      placeholder="Enter your password"
      secureTextEntry={!showPassword}
      accessibilityLabel="Password input"
      accessibilityHint="Enter your password"
      accessibilityLabelledBy="passwordLabel"
      style={[styles.input, { marginTop: 4 }]}
      accessibilityRequired={true}
      accessibilityState={{
        disabled: false,
        required: true,
      }}
      autoComplete="password"
    />
    <TouchableOpacity
      onPress={togglePasswordVisibility}
      className="absolute -translate-y-1/2 right-3 top-1/2"
      accessibilityRole="button"
      accessibilityLabel={showPassword ? "Hide password" : "Show password"}
      accessibilityHint="Double tap to toggle password visibility"
      accessibilityState={{
        checked: showPassword,
      }}
    >
      {showPassword ? (
        <Eye size={20} color="#000000" accessibilityElementsHidden={true} />
      ) : (
        <EyeOff size={20} color="#000000" accessibilityElementsHidden={true} />
      )}
    </TouchableOpacity>
  </View>
</View>;

WCAG 2.1 accessibility checks

1.3.1 Info and Relationships (Level A)

1.4.3 Contrast (Minimum) (Level AA)

2.4.6 Headings and Labels (Level AA)

4.1.2 Name, Role, Value (Level A)

4.1.3 Status Messages (Level AA)

Mobile App Starter Kit

·

©

2025

All rights reserved, Studio Hola.

Mobile App Starter Kit

·

©

2025

All rights reserved, Studio Hola.

Mobile App Starter Kit

·

©

2025

All rights reserved, Studio Hola.