-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
91 lines (79 loc) · 2.04 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
import React, {useState, useEffect} from 'react';
import {View, StyleSheet, Image, TouchableOpacity, Alert} from 'react-native';
import Torch from 'react-native-torch';
import RNShake from 'react-native-shake';
const App = () => {
const [toggle, setToggle] = useState(true);
const handleChangeToggle =() =>setToggle(oldToggle => !oldToggle);
useEffect(()=> {
//Liga flash do celular
Torch.switchState(toggle);
// console.log('Trocou estado do flash');
}, [toggle]);
useEffect(()=> {
/**
* Quando o celular for chacoalhado, mudaremos o toggle
*/
const subscription = RNShake.addListener(()=>{
setToggle(oldToggle => !oldToggle);
});
//Essa função vai 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/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>
</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,
},
dioLogo: {
resizeMode: 'contain',
alignSelf: 'center',
width: 250,
height: 250,
},
});