diff --git a/packages/react-native-web/src/exports/StyleSheet/StyleSheetValidation.js b/packages/react-native-web/src/exports/StyleSheet/StyleSheetValidation.js index 3fc1fc88a..965000461 100644 --- a/packages/react-native-web/src/exports/StyleSheet/StyleSheetValidation.js +++ b/packages/react-native-web/src/exports/StyleSheet/StyleSheetValidation.js @@ -103,5 +103,6 @@ StyleSheetValidation.addValidStylePropTypes({ pointerEvents: string, tableLayout: string, /* @private */ - MozAppearance: string + MozAppearance: string, + WebkitAppearance: string }); diff --git a/packages/react-native-web/src/exports/TextInput/index.js b/packages/react-native-web/src/exports/TextInput/index.js index 2c9677ba3..e17707d8e 100644 --- a/packages/react-native-web/src/exports/TextInput/index.js +++ b/packages/react-native-web/src/exports/TextInput/index.js @@ -408,7 +408,7 @@ class TextInput extends Component<*> { const styles = StyleSheet.create({ initial: { MozAppearance: 'textfield', - appearance: 'none', + WebkitAppearance: 'none', backgroundColor: 'transparent', borderColor: 'black', borderRadius: 0,