Skip to content

skantus/react-native-rounded-progress-bar-ios

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

51 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Note

react-native-rounded-progress-bar-ios

Installation

  • $ yarn add react-native-rounded-progress-bar-ios
  • cd ios/ && pod install

Usage

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>;

Note:

Only available for iOS.

Happy coding!