How does the react native textarea text appear on the first line?

how is the text of textarea displayed on the first line? It is now displayed vertically and centered.
clipboard.png

Mar.20,2021

uses the TextInput component, to enter multiple lines of text in the text box, you need to set multiline= {true}, so that the text will be displayed vertically by default, and setting textAlignVertical: 'top' on the style of the TextInput component will display on the first line.

Menu