From 3b7067a62ddf8dace0fd2e197718cf435a246a83 Mon Sep 17 00:00:00 2001 From: Marcin Dobosz Date: Fri, 13 Oct 2017 20:38:13 -0700 Subject: [PATCH] Partial list of unsupported TextInput styles Summary: References #7070 Docs are incomplete, start filling them out N/A Closes https://github.com/facebook/react-native/pull/16346 Differential Revision: D6057501 Pulled By: hramos fbshipit-source-id: c30d3369fa1a73ef6a93c2ed8f8c53af5a1af7ee --- Libraries/Components/TextInput/TextInput.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index 9b96c0d16..f5ad6dcb5 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -533,7 +533,17 @@ const TextInput = createReactClass({ */ blurOnSubmit: PropTypes.bool, /** - * Note that not all Text styles are supported, + * Note that not all Text styles are supported, an incomplete list of what is not supported includes: + * + * - `borderLeftWidth` + * - `borderTopWidth` + * - `borderRightWidth` + * - `borderBottomWidth` + * - `borderTopLeftRadius` + * - `borderTopRightRadius` + * - `borderBottomRightRadius` + * - `borderBottomLeftRadius` + * * see [Issue#7070](https://github.com/facebook/react-native/issues/7070) * for more detail. *