mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 17:00:04 +02:00
temp
This commit is contained in:
parent
3eca0e8016
commit
8458c9256d
1 changed files with 9 additions and 7 deletions
|
@ -38,6 +38,14 @@ var SequenceSelectView = React.createClass({
|
||||||
{Object.keys(Levels.levelSequences).map(
|
{Object.keys(Levels.levelSequences).map(
|
||||||
sequenceID => this.renderSelector(sequenceID)
|
sequenceID => this.renderSelector(sequenceID)
|
||||||
)}
|
)}
|
||||||
|
<NavButton
|
||||||
|
text="Level 1"
|
||||||
|
onPress={() => {
|
||||||
|
this.props.navigator.push(
|
||||||
|
Routes.getRouteForID(Routes.LEVEL_SELECT)
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</View>
|
</View>
|
||||||
</TerminalCardView>
|
</TerminalCardView>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
@ -51,13 +59,7 @@ var SequenceSelectView = React.createClass({
|
||||||
var about = intl.getIntlKey(info, 'about');
|
var about = intl.getIntlKey(info, 'about');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<TouchableHighlight
|
<TouchableHighlight underlayColor="#6E6E6E">
|
||||||
onPress={() => {
|
|
||||||
this.props.navigator.push(
|
|
||||||
Routes.getRouteForID(Routes.LEVEL_SELECT)
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
underlayColor="#6E6E6E">
|
|
||||||
<View>
|
<View>
|
||||||
<View style={styles.textContainer}>
|
<View style={styles.textContainer}>
|
||||||
<Text style={styles.sequenceName}>
|
<Text style={styles.sequenceName}>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue