import React, { useState, useRef } from 'react';
import { Text, View, StyleSheet, Button, StatusBar } from 'react-native';
import { Transitioning, Transition } from 'react-native-reanimated';
function Progress() {
const transition = ;
let [perc, setPerc] = useState(20);
const ref = useRef();
return (
);
}
const styles = StyleSheet.create({
centerAll: {
flex: 1,
alignItems: 'center',
marginTop: 100,
},
bar: {
marginTop: 30,
height: 5,
width: '80%',
backgroundColor: '#aaa',
},
});
export default Progress;