From c406a307a8db6dc8040e036de95650ba69616bac Mon Sep 17 00:00:00 2001 From: Gabriel Donadel Dall'Agnol Date: Thu, 25 Aug 2022 20:52:22 -0300 Subject: [PATCH] feat: Add rows prop to TextInput docs --- docs/textinput.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/textinput.md b/docs/textinput.md index c685e65d14c..a9a2c68b099 100644 --- a/docs/textinput.md +++ b/docs/textinput.md @@ -681,6 +681,16 @@ If `true`, allows TextInput to pass touch events to the parent component. This a --- +### `rows`
Android
+ +Sets the number of lines for a `TextInput`. Use it with multiline set to `true` to be able to fill the lines. + +| Type | +| ------ | +| number | + +--- + ### `scrollEnabled`
iOS
If `false`, scrolling of the text view will be disabled. The default value is `true`. Only works with `multiline={true}`.