This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
SecureField
A SwiftUI SecureField component for password input.
Expo UI SecureField matches the official SwiftUI SecureField API and provides a text field that masks user input for passwords and other sensitive text.
Installation
If you are installing this in an existing React Native app, make sure to install expo in your project.
Usage
Basic secure field
Submit handling
Use the submitLabel and onSubmit modifiers to handle form submission from the keyboard.
Imperative ref
Use a ref to imperatively set text, focus, or blur the secure field.
API
import { SecureField } from '@expo/ui/swift-ui';
Component
Type: React.Element<SecureFieldProps>
Renders a SwiftUI SecureField for password input.
boolean • Default: falseIf true, the field will be focused automatically when mounted.
stringInitial value displayed when mounted. Uncontrolled — change key to reset.
(focused: boolean) => voidA callback triggered when the field gains or loses focus.
(value: string) => voidA callback triggered when the text value changes.
Ref<SecureFieldRef>