Stay informed
Subscribe to our newsletter if you'd like to stay informed about Shoutem Extensions and Shoutem UI Toolkit.
TextInput
component is used for inputting text into the application using keyboard.
TextInput
has no specific (custom) Props, however, it supports every prop that the standard React Native TextInput
component supports. For full list of available props, visit
React Native TextInput component documentation.
TextInput
has no specific style names.
Style
prop that the standard React Native TextInput
component supports<TextInput
placeholder={'Username or email'}
onChangeText={...}
/>
<TextInput
defaultValue={'Username or email'}
onChangeText={...}
/>
<TextInput
placeholder={'Password'}
secureTextEntry
/>