Skip to content

Instantly share code, notes, and snippets.

@twmilli
twmilli / Button.js
Created May 4, 2017 23:51
Simple Button in React Native
import React from 'react';
import { StyleSheet, Text, TouchableOpacity } from 'react-native';
const Button = (props) => {
const { buttonStyle, textStyle } = styles;
return (
<TouchableOpacity style={buttonStyle} onPress={props.onPress}>
<Text style={textStyle}>
{props.children}
</Text>
</TouchableOpacity>