Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 17, 2016 14:55
Show Gist options
  • Save dabit3/0562b9b8d3d0b38daa7a8abd7a9d3bad to your computer and use it in GitHub Desktop.
Save dabit3/0562b9b8d3d0b38daa7a8abd7a9d3bad to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux Button.js
import React from 'react'
import { Text, TouchableHighlight, StyleSheet } from 'react-native'
export default ({label, onPress}) => (
<TouchableHighlight
underlayColor='#35b5ff'
onPress={onPress} style={styles.button}>
<Text style={styles.label}>{label}</Text>
</TouchableHighlight>
)
const styles = StyleSheet.create({
button: {
height: 70,
backgroundColor: '#22a3ed',
justifyContent: 'center',
alignItems: 'center'
},
label: {
color: 'white'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment