-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
44 lines (42 loc) · 900 Bytes
/
index.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
import React from "react";
import { Button, TouchableWithoutFeedback, View, Text } from "react-native";
export default function HomeButton({
title,
onPress,
backgroundColor,
color,
font,
}) {
return (
<TouchableWithoutFeedback
onPressIn={(e) => {
console.log("user pressed my button");
}}
onPressOut={(e) => {
console.log("user released my button");
}}
onPress={onPress}
>
<View
style={{
height: "50%",
width: "100%",
backgroundColor: backgroundColor,
flexDirection: "row",
justifyContent: "center",
}}
>
<Text
style={{
top: "40%",
color: color,
fontSize: 18,
fontFamily: font,
}}
>
{title}
</Text>
</View>
</TouchableWithoutFeedback>
);
}