TextInput#autoCorrect

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

TextInput#autoFocus

autoFocus bool If true, focuses the input on componentDidMount. The default value is false.

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#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#onLongPress

onLongPress function This function is called on long press.

Text#onPress

onPress function This function is called on press.

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#allowFontScaling

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