Files
react-native/Libraries
James Ide 901c24ebb8 [Text] Ensure that the text background is transparent by default
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,
      },
    };
2015-04-21 19:11:26 -08:00
..
2015-04-08 08:34:10 -08:00
2015-04-19 12:56:22 -08:00
2015-03-24 13:27:00 -08:00
2015-03-25 11:09:54 -08:00
2015-03-25 11:09:54 -08:00
2015-04-17 18:17:16 -08:00
2015-04-21 16:10:31 -08:00
2015-04-15 06:06:29 -08:00
2015-04-08 08:34:10 -08:00
2015-04-15 06:06:29 -08:00