Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.07 KB

File metadata and controls

44 lines (30 loc) · 1.07 KB

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!