2015-02-05 updates

- [ReactServer] Fix newly introduced bug | Amjad Masad
- [ReactServer] Last sync from github | Amjad Masad
- [RFC-ReactNative] Subscribable overhaul, clean up AppState/Reachability | Eric Vicenti
- [ReactKit] Enable tappable <Text /> subnodes | Alex Akers
This commit is contained in:
Christopher Chedeau
2015-02-06 15:45:28 -08:00
parent fd8b7dee77
commit 4f613e20d2
26 changed files with 786 additions and 258 deletions

View File

@@ -34,22 +34,20 @@ var AttributeToggler = React.createClass({
render: function() {
var curStyle = {fontSize: this.state.fontSize};
return (
<View>
<Text>
<Text style={curStyle}>
Tap the controls below to change attributes.
</Text>
<Text>
<Text>
See how it will even work on{' '}
<Text style={curStyle}>
this nested text
</Text>
See how it will even work on{' '}
<Text style={curStyle}>
this nested text
</Text>
<Text onPress={this.increaseSize}>
{'>> Increase Size <<'}
</Text>
</Text>
<Text onPress={this.increaseSize}>
{'>> Increase Size <<'}
</Text>
</View>
</Text>
);
}
});