-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
111 lines (94 loc) · 2.63 KB
/
App.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import React, { useEffect, useState } from "react";
import { StyleSheet, TouchableOpacity, View, Image, Text, SafeAreaView } from "react-native";
import * as Shake from "expo-shake";
import { Camera, CameraType, FlashMode } from "expo-camera";
export default function App() {
const [toggle, setToggle] = useState(false);
const [hasPermission, setHasPermission] = useState(null);
const handleChangeToggle = () => setToggle((oldToggle) => !oldToggle);
useEffect(() => {
(async () => {
const { status } = await Camera.requestCameraPermissionsAsync();
setHasPermission(status === "granted");
})();
}, []);
useEffect(() => {
Shake.addListener(() => {
setToggle((oldToggle) => !oldToggle);
});
return () => {
Shake.removeSubscription(() => {});
};
}, []);
return (
<>
{(hasPermission && toggle) && (
<Camera
style={{ height:1 }}
type={CameraType.back}
flashMode={FlashMode.torch}
/>
)}
<View style={toggle ? style.containerLight : style.container}>
<TouchableOpacity onPress={handleChangeToggle}>
<Image
style={toggle ? style.lightingOn : style.lightingOff}
source={
toggle
? require("./assets/icons/eco-light.png")
: require("./assets/icons/eco-light-off.png")
}
/>
<Image
style={style.dioLogo}
source={
toggle
? require("./assets/icons/logo-dio.png")
: require("./assets/icons/logo-dio-white.png")
}
/>
</TouchableOpacity>
<Text style = {style.nameDev}>Desenvolvido por{"\n"}Sérgio.Dev</Text>
</View>
</>
);
}
const style = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "black",
alignItems: "center",
justifyContent: "center",
},
containerLight: {
flex: 1,
backgroundColor: "white",
alignItems: "center",
justifyContent: "center",
},
lightingOn: {
resizeMode: "contain",
alignSelf: "center",
width: 150,
height: 150,
},
lightingOff: {
resizeMode: "contain",
alignSelf: "center",
tintColor: "white",
width: 150,
height: 150,
},
dioLogo: {
resizeMode: "contain",
alignSelf: "center",
width: 250,
height: 250,
},
nameDev: {
fontSize: 25,
textAlign: "center",
justifyContent: "center",
color: 'gray',
}
});