From 5a8b61f03945b86477c894b9516f03c22a6bb15a Mon Sep 17 00:00:00 2001 From: Agastya Darma Laksana Date: Wed, 10 Aug 2022 19:20:03 +0700 Subject: [PATCH] feat(cursorColor): Adding cursorColor Android --- docs/textinput.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/textinput.md b/docs/textinput.md index 1be0f8bea54..c685e65d14c 100644 --- a/docs/textinput.md +++ b/docs/textinput.md @@ -281,6 +281,16 @@ Provides an initial value that will change when the user starts typing. Useful f --- +### `cursorColor`
Android
+ +When provided it will set the color of the cursor (or "caret") in the component. Unlike the behavior of `selectionColor` the cursor color will be set independently from the color of the text selection box. + +| Type | +| ------------------ | +| [color](colors.md) | + +--- + ### `disableFullscreenUI`
Android
When `false`, if there is a small amount of space available around a text input (e.g. landscape orientation on a phone), the OS may choose to have the user edit the text inside of a full screen text input mode. When `true`, this feature is disabled and users will always edit the text directly inside of the text input. Defaults to `false`.