- You could use https://github.com/sasij/react-native-rounded-progress-bar supports both platforms :)
$ yarn add react-native-rounded-progress-bar-ios
cd ios/ && pod install
import RoundedProgressBar from "react-native-rounded-progress-bar-ios";
<RoundedProgressBar
percent={0.75}
borderWidth={6}
size={40}
color="#F02D00"
bgColor="#fff"
backgroundWidth={9}
shadowColor="#c2c2c2"
>
<Text>Loading...</Text>
</RoundedProgressBar>;
Only available for iOS.