TextInput#autoCorrect

autoCorrect bool If false, disables auto-correct. The default value is true.

TextInput#autoCapitalize

autoCapitalize enum('none', 'sentences', 'words', 'characters') Can tell TextInput to automatically capitalize certain characters. characters: all characters, words: first letter of each word sentences: first letter of each sentence (default) none: don't auto capitalize anything

Text#testID

testID string Used to locate this view in end-to-end tests.

Text#suppressHighlighting

iossuppressHighlighting bool When true, no visual change is made when text is pressed down. By default, a gray oval highlights the text on press down.

Text#style

style style View#style... color color fontFamily string fontSize number fontStyle enum('normal', 'italic') fontWeight enum('normal', 'bold', '100', '200', '300', '400', '500', '600', '700', '800', '900') Specifies font weight. The values 'normal' and 'bold' are supported for most fonts. Not all fonts have a variant for each of the numeric values, in that case the closest one is chosen. lineHeight number textAlign enum('auto', 'left', 'right', 'center', 'justify') Specifies text alignmen

Text#onPress

onPress function This function is called on press.

Text#onLongPress

onLongPress function This function is called on long press.

Text#onLayout

onLayout function Invoked on mount and layout changes with {nativeEvent: {layout: {x, y, width, height}}}

Text#numberOfLines

numberOfLines number Used to truncate the text with an ellipsis after computing the text layout, including line wrapping, such that the total number of lines does not exceed this number.

Text#allowFontScaling

iosallowFontScaling bool Specifies should fonts scale to respect Text Size accessibility setting on iOS.