React native 创建一个动画循环?

React native 创建一个动画循环?,react-native,react-native-svg-charts,React Native,React Native Svg Charts,我需要从本机SVG图表中创建一个动画进度圈 我需要在大约3秒钟内完成0-1。。我似乎找不到我可以在哪里以及如何做这件事。。我需要使用动画吗 export const SplashScreen = ({ navigation }, props) => { return ( <View style={styles.MainView}> <View style={styles.progressView}> <ProgressC

我需要从本机SVG图表中创建一个动画进度圈

我需要在大约3秒钟内完成0-1。。我似乎找不到我可以在哪里以及如何做这件事。。我需要使用动画吗

export const SplashScreen = ({ navigation }, props) => {
  return (
    <View style={styles.MainView}>
      <View style={styles.progressView}>
        <ProgressCircle style={styles.progressCircle} progress={0.4} backgroundColor={'white'} progressColor={'#084663'} />
      </View>
    </View>
  );
};
export const SplashScreen=({navigation},props)=>{
返回(
);
};
我以前在网络上做过,但在RN中似乎不一样

但我确实需要用我当前的软件包来实现这一点,以最小化软件包下载/应用程序大小