Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 17, 2016 14:55
Show Gist options
  • Save dabit3/bb4db808f725210c676c78496172c699 to your computer and use it in GitHub Desktop.
Save dabit3/bb4db808f725210c676c78496172c699 to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux Home.js
import React from 'react'
import {
View,
Text,
StyleSheet
} from 'react-native'
import Button from './Button'
const route = {
type: 'push',
route: {
key: 'about',
title: 'About'
}
}
const Home = ({_handleNavigate}) => (
<View style={styles.container}>
<Text style={styles.title}>Home</Text>
<Button onPress={() => _handleNavigate(route)} label='Go To About' />
</View>
)
const styles = StyleSheet.create({
title: {
marginBottom: 20,
fontSize: 22,
textAlign: 'center'
},
container: {
paddingTop: 60
}
})
export default Home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment