import React, {useState} from 'react'; import {StyleSheet, Text} from 'react-native'; import {View} from 'react-native-animatable'; import Animated, {useSharedValue} from 'react-native-reanimated'; import {SafeAreaView} from 'react-native-safe-area-context'; import {useSelector} from 'react-redux'; import {RootState} from '../../store/rootReducer'; import {normalize, StatusBarHeight} from '../../utils'; import {GradientProgressBar} from '../common'; interface MomentUploadProgressBarProps {} const MomentUploadProgressBar: React.FC = ({}) => { const {momentUploadStatus} = useSelector((state: RootState) => state.user); // const [progress, setProgress] = useState(0); // const progressTime = useSharedValue(0); // const [indeterminate, setIndeterminate] = useState(false); // const range = new Animated.Value(0); // const transX = new Animated.Value(0); return ( Uploading Moment... ); }; const styles = StyleSheet.create({ background: { position: 'absolute', zIndex: 999, height: StatusBarHeight + 100, backgroundColor: 'white', width: '100%', alignItems: 'center', }, container: { justifyContent: 'space-evenly', height: '100%', }, text: { fontSize: normalize(14), fontWeight: 'bold', lineHeight: 17, marginVertical: 12, }, }); export default MomentUploadProgressBar;