From a18d30c8097aa23b885cdf713907ec8af733ed61 Mon Sep 17 00:00:00 2001 From: James Long Date: Thu, 16 Aug 2018 22:03:07 -0400 Subject: [PATCH] [fix] Add inputAccessoryViewID to TextInput props Close #1076 --- packages/react-native-web/src/exports/TextInput/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/react-native-web/src/exports/TextInput/index.js b/packages/react-native-web/src/exports/TextInput/index.js index 2da70531..96a89c1f 100644 --- a/packages/react-native-web/src/exports/TextInput/index.js +++ b/packages/react-native-web/src/exports/TextInput/index.js @@ -81,6 +81,7 @@ class TextInput extends Component<*> { clearTextOnFocus: bool, defaultValue: string, editable: bool, + inputAccessoryViewID: string, keyboardType: oneOf([ 'default', 'email-address', @@ -174,6 +175,8 @@ class TextInput extends Component<*> { const { autoCorrect, editable, + /* eslint-disable */ + inputAccessoryViewID, keyboardType, multiline, numberOfLines,