-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
70 lines (61 loc) · 1.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
import React, { useState, useEffect } from "react";
import { View, StyleSheet, Image, TouchableOpacity } from "react-native";
import Torch from "react-native-torch";
import RNShake from "react-native-shake";
const App = () => {
const [toggle, setToggle] = useState(false);
const handleChangeToggle = () => setToggle((oldToggle) => !oldToggle);
useEffect(() => {
//Liga flash do celular
Torch.switchState(toggle);
}, [toggle]);
useEffect(() => {
const subscription = RNShake.addListener("ShakeEvent", () => {
setToggle(oldToggle => !oldToggle);
});
//Função será chamada quando o componente for desmontado
return () => subscription.remove();
}, []);
return (
<View style={toggle ? style.containerLight : style.container}>
<TouchableOpacity onPress={handleChangeToggle}>
<Image
style={toggle ? style.lightingOn : style.lightingOff}
source={
toggle
? require("./assets/icons/switch.png")
: require("./assets/icons/switch-off.png")
}
/>
</TouchableOpacity>
</View>
);
}
export default App;
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,
},
});