A framework for building native apps with React.
http://facebook.github.io/react-native/
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, }, }; |
||
---|---|---|
Examples | ||
IntegrationTests | ||
Libraries | ||
React | ||
jestSupport | ||
lint | ||
packager | ||
.eslintignore | ||
.eslintrc | ||
.flowconfig | ||
React.podspec | ||
linter.js | ||
package.json | ||
runXcodeTests.sh |