Skip to content

Instantly share code, notes, and snippets.

@brookslyrette
Created August 20, 2017 19:36
Show Gist options
  • Select an option

  • Save brookslyrette/df8040f3c019d90bdc2d24a54f8c6662 to your computer and use it in GitHub Desktop.

Select an option

Save brookslyrette/df8040f3c019d90bdc2d24a54f8c6662 to your computer and use it in GitHub Desktop.
import React from 'react';
import { Button, StyleSheet, Text, View } from 'react-native';
const Screen1 = ( {navigation} ) => (
<View style={styles.container}>
<Text>Screen 1</Text>
<Button
title="Go To Screen 2"
onPress={() => navigation.navigate('Screen2')}>
</Button>
<Button
title="Go To Screen 3"
onPress={() => navigation.navigate('Screen2')}>
</Button>
</View>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment