-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddDiceButton.jsx
41 lines (39 loc) · 969 Bytes
/
AddDiceButton.jsx
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
import { Text, View, StyleSheet, Pressable } from 'react-native';
import FontAwesomeIcons from '@expo/vector-icons/FontAwesome6'
export default function AddDiceButton({ onAddDice }) {
return (
<View style={styles.buttonContainer}>
<Pressable onPress={() => onAddDice()} style={styles.button}>
<FontAwesomeIcons name="dice-d20" size={28} color="#cccccc" />
<Text style={styles.text}>
Add Dice
</Text>
</Pressable>
</View>
)
}
const styles = StyleSheet.create({
buttonContainer: {
width: 360,
height: 140,
alignItems: 'center',
justifyContent: 'center',
padding: 3,
},
button: {
borderRadius: 10,
width: "100%",
height: "100%",
borderStyle: "dashed",
borderColor: "#cccccc",
borderWidth: 2,
alignItems: "center",
justifyContent: "center",
flexDirection: "column"
},
text: {
marginTop: 10,
color: "#bbbbbb",
fontWeight: "600"
}
});