Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Example/components/Launch.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class Launch extends React.Component {
<View style={styles.container}>
<Text>Launch page</Text>
<Button onPress={()=>Actions.login({data:"Custom data", title:'Custom title' })}>Go to Login page</Button>
<Button onPress={Actions.register}>Go to Register page</Button>
<Button onPress={Actions.register2}>Go to Register page without animation</Button>
<Button onPress={()=>Actions.register()}>Go to Register page</Button>
<Button onPress={()=>Actions.register2()}>Go to Register page without animation</Button>
<Button onPress={()=>Actions.error("Error message")}>Go to Error page</Button>
<Button onPress={Actions.tabbar}>Go to TabBar page</Button>
<Button onPress={()=>Actions.tabbar()}>Go to TabBar page</Button>
</View>
);
}
Expand All @@ -29,4 +29,4 @@ var styles = StyleSheet.create({
}
});

module.exports = Launch;
module.exports = Launch;