Question from the React Native (2023) test

Create an email input for your login screen in React Native

Easy

How to create an email input for your login screen?

Author: DavidStatus: PublishedQuestion passed 318 times
Edit
0
Community Evaluations
developer avatar
Auteur anonyme
28/10/2024
<TextInput onChangeText={setInputValue} value={inputValue} placeholder="Enter your email:" keyboardType="email-address" autoCapitalize="none" autoComplete="email" autoCorrect={false} />