You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
992 B

3 years ago
import React, {useState, useEffect} from 'react';
import {View, Appearance } from 'react-native';
3 years ago
import tw from 'tailwind-rn';
import Colors from "../constants/Colors";
3 years ago
//Color
import Color from '../constants/Colors';
function Progress({percent, alignItems}) {
const colorScheme = Appearance.getColorScheme();
3 years ago
const [delayPercent, setDelayPercent] = useState(0);
useEffect(() => {
setTimeout(() => {
setDelayPercent(() => percent);
}, 1000);
}, [percent]);
return (
<View
style={[
tw(`w-full h-1.5 rounded-full overflow-hidden my-3 flex ${alignItems}`),
{backgroundColor: Colors.theme1[colorScheme].green79 + '22'},
3 years ago
]}>
<View
style={[
tw('h-full rounded-full'),
3 years ago
{
backgroundColor: Color.theme1[colorScheme].greenCF,
3 years ago
width: percent + '%',
// backgroundColor: Color.theme1.light.blue4,
},
]}></View>
</View>
);
}
export default Progress;