-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgressBar.js
51 lines (42 loc) · 1.07 KB
/
ProgressBar.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
import React, {useState, useEffect} from 'react';
import AnimatedProgressWheel from 'react-native-progress-wheel';
import theme from '../utils/theme';
import Text from './base/Text';
import Column from './base/Column';
const ProgressBar = ({time, navigation}) => {
const [timer, setTimer] = useState(time);
useEffect(() => {
let interval = null;
interval = setInterval(() => {
if (timer <= 0) {
navigation.navigate('WrongAnswer');
clearInterval(interval);
} else {
setTimer(timer - 1);
}
}, 1000);
return () => {
clearInterval(interval);
};
}, [timer]);
return (
<Column>
<AnimatedProgressWheel
size={64}
width={6}
color={theme.colors.purple}
progress={100}
animateFromValue={0}
duration={60000}
backgroundColor={theme.colors.lightGrey}
/>
<Text
style={{position: 'absolute', top: 20}}
fontFamily="Poppins-Bold"
fontSize={18}>
{timer}
</Text>
</Column>
);
};
export default ProgressBar;