From 734e73e199cfb9492248bbf42637662dc9047f15 Mon Sep 17 00:00:00 2001 From: jeswinsimon Date: Sat, 10 Aug 2019 01:00:37 +0530 Subject: [PATCH] autoCompleteType prop in textInput has been renamed to autoComplete --- docs/textinput.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/textinput.md b/docs/textinput.md index 729f9e00009..545ea685869 100644 --- a/docs/textinput.md +++ b/docs/textinput.md @@ -88,7 +88,7 @@ Note that on Android performing text selection in input can change app's activit * [`allowFontScaling`](textinput.md#allowfontscaling) * [`autoCapitalize`](textinput.md#autocapitalize) -* [`autoCompleteType`](textinput.md#autocompletetype) +* [`autoComplete`](textinput.md#autocompletetype) * [`autoCorrect`](textinput.md#autocorrect) * [`autoFocus`](textinput.md#autofocus) * [`blurOnSubmit`](textinput.md#bluronsubmit) @@ -177,11 +177,11 @@ Can tell `TextInput` to automatically capitalize certain characters. This proper --- -### `autoCompleteType` +### `autoComplete` -Specifies autocomplete hints for the system, so it can provide autofill. On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content. To disable autocomplete, set `autoCompleteType` to `off`. +Specifies autocomplete hints for the system, so it can provide autofill. On Android, the system will always attempt to offer autofill by using heuristics to identify the type of content. To disable autocomplete, set `autoComplete` to `off`. -Possible values for `autoCompleteType` are: +Possible values for `autoComplete` are: - `off` - `username`