Skip to content

Instantly share code, notes, and snippets.

@HigoRibeiro
Created May 30, 2018 13:02
Show Gist options
  • Save HigoRibeiro/3aa5e40ff03ffa13aa6cdcd3c814a4ec to your computer and use it in GitHub Desktop.
Save HigoRibeiro/3aa5e40ff03ffa13aa6cdcd3c814a4ec to your computer and use it in GitHub Desktop.
// src/Page1.js
import React from 'react';
import { View, Button, Text } from 'react-native';
const Page1 = ({ navigation }) => (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text>Home ;D</Text>
<Button
title="Ir para About"
onPress={() => navigation.navigate('About') }
/>
</View>
);
Page1.navigationOptions = {
title: 'Home',
}
export default Page1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment