-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBetterButton.js
79 lines (73 loc) · 2.55 KB
/
BetterButton.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { StyleSheet, Text, View, TouchableOpacity, Dimensions, Image } from "react-native";
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import GlobalStyles from "../Themes/global-styles.js";
import Images from "../Themes/images.js";
import Colors from "../Themes/colors.js"
export default class BetterButton extends Component {
static propTypes = {
title: PropTypes.string.isRequired,
onPress: PropTypes.func.isRequired,
color: PropTypes.string,
width: PropTypes.any,
fontColor: PropTypes.string,
icon: PropTypes.string,
}
constructor(props) {
super(props);
// Set these if they were supplied, otherwise use the defaults
const color = props.color || Colors.yellow;
const width = props.width || "100%";
const fontColor = props.fontColor || "black";
const iconName = props.icon;
this.state = {
color: color,
width: width,
fontColor: fontColor,
border: {
borderColor: "black",
borderWidth: 1 * GlobalStyles.CONSTANTS.borderWidth,
},
icon: iconName,
};
}
render() {
return (
<TouchableOpacity
onPress={() => this.props.onPress()}
style={{...styles.wrapper, ...GlobalStyles.shadow, width: this.state.width}}
>
<View style={{...styles.button, ...GlobalStyles.rounded, backgroundColor: this.state.color, ...this.state.border}}>
{
this.state.icon ?
<Image
source={Images[this.state.icon]}
style={GlobalStyles.icon}
/>
: <></>
}
<Text style={{...styles.text, color: this.state.fontColor}}>{this.props.title}</Text>
</View>
</TouchableOpacity>
);
}
}
const styles = StyleSheet.create({
button: {
justifyContent: "center",
marginTop: 10 * GlobalStyles.CONSTANTS.borderWidth,
padding: 10 * GlobalStyles.CONSTANTS.borderWidth,
alignItems: "center",
marginBottom: 10 * GlobalStyles.CONSTANTS.borderWidth,
textAlign: "center",
flexDirection: "row",
},
text: {
fontSize: GlobalStyles.regText.fontSize,
textAlign: "center",
fontFamily: GlobalStyles.regText.fontFamily,
},
wrapper: {
textAlign: "center",
}
});