mirror of
https://github.com/status-im/react-native.git
synced 2025-02-02 12:43:54 +00:00
901c24ebb8
Summary: For a very simple view I was observing that the text background was black and had to manually be set to transparent. This ensures that text nodes have a transparent background by default. Closes https://github.com/facebook/react-native/pull/256 Github Author: James Ide <ide@jameside.com> Test Plan: This example component no longer renders what looks like a black block, and instead displays legible text. var Example = React.createClass({ render: function() { return ( <View style={styles.container}> <Text>hello</Text> </View> ); }, }); var styles = StyleSheet.create({ container: { flex: 1, }, };