import React from 'react'; import { StyleSheet, Text } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; import ActivityIndicator from '../ActivityIndicator'; interface IButton { title: string; type: string onPress(): void; disabled: boolean; backgroundColor: string loading: boolean; theme: string color: string fontSize: any style: any } const styles = StyleSheet.create({ container: { paddingHorizontal: 14, justifyContent: 'center', height: 48, borderRadius: 2, marginBottom: 12 }, text: { fontSize: 16, ...sharedStyles.textMedium, ...sharedStyles.textAlignCenter }, disabled: { opacity: 0.3 } }); export default class Button extends React.PureComponent { render() { const { title, type, onPress, disabled, backgroundColor, color, loading, style, theme, fontSize, ...otherProps } = this.props; const isPrimary = type === 'primary'; let textColor = isPrimary ? themes[theme].buttonText : themes[theme].bodyText; if (color) { textColor = color; } return ( { loading ? : ( {title} ) } ); } }