import React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet, View, Text, Platform } from 'react-native'; import { COLOR_BUTTON_PRIMARY, COLOR_TEXT } from '../../constants/colors'; import Touch from '../../utils/touch'; const colors = { backgroundPrimary: COLOR_BUTTON_PRIMARY, backgroundSecondary: 'white', textColorPrimary: 'white', textColorSecondary: COLOR_TEXT }; const styles = StyleSheet.create({ container: { paddingHorizontal: 15, paddingVertical: 10, borderRadius: 2 }, text: { textAlign: 'center', fontWeight: '700' }, background_primary: { backgroundColor: colors.backgroundPrimary }, background_secondary: { backgroundColor: colors.backgroundSecondary }, text_color_primary: { color: colors.textColorPrimary }, text_color_secondary: { color: colors.textColorSecondary }, margin: { marginBottom: 10 }, disabled: { opacity: 0.5 } }); export default class Button extends React.PureComponent { static propTypes = { title: PropTypes.string, type: PropTypes.string, onPress: PropTypes.func, disabled: PropTypes.bool } static defaultProps = { title: 'Press me!', type: 'primary', onPress: () => alert('It works!'), disabled: false } render() { const { title, type, onPress, disabled, ...otherProps } = this.props; return ( {title} ); } }