Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
textInput
value
string
placeholder
keyboardType
"default"
"email"
"number"
onChange
(value: string) => void
onSubmit
() => void
style
StyleProperties
key
string | number
class
const [email, setEmail] = useState(""); <textInput value={email} placeholder="Email address" keyboardType="email" onChange={setEmail} onSubmit={() => submitEmail(email)} style={{ width: "100%", padding: 12, borderWidth: 1, borderColor: "#d0d5dd", borderRadius: 8 }} />
children