mirror of
https://github.com/status-im/react-native.git
synced 2025-02-13 09:56:44 +00:00
Summary: Some of the RCTTextView properties weren't set up correctly which would cause bugs when you'd set a property and then unset it, trying to revert to the default. This requires reading the default value from the dummy view instance, but some of these properties didn't have getters which was causing issues. Fixes #1174 Closes https://github.com/facebook/react-native/pull/1175 Github Author: James Ide <ide@jameside.com> Test Plan: Create a `<TextInput multiline={true}>` component. Give it a style with `color: 'blue'`, and then on the next render pass remove the style. No more red box.