import React, { useState, useEffect } from "react"; import { View, Appearance } from "react-native"; import tw from "tailwind-rn"; import Colors from "../constants/Colors"; //Color import Color from "../constants/Colors"; function Progress({ percent, alignItems }) { const colorScheme = Appearance.getColorScheme(); const [delayPercent, setDelayPercent] = useState(60); // useEffect(() => { // if (percent) { // setTimeout(() => { // setDelayPercent(() => percent); // }, 1000); // } // }, [percent]); return ( ); } export default Progress;