1.1.2 • Published 5 years ago

rn-progress-bar v1.1.2

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

React Native Progress Bar

This is a simple component used to generate a progress bar for your react-native application.


Installation

  1. Use npm or yarn to add to your project.

    yarn add rn-progress-bar

    or

    npm i rn-progress-bar
  2. Import into the required file:

    import ProgressBar from 'rn-progress-bar';

Styling

For styling, you can pass any style object as props, and it will override the default styles of the component.

const styles = StyleSheet.create({
  progressBar: {
    height: 12,
    borderRadius: 5
  }
});

<ProgressBar
  style={styles.progressBar}
  primary='#f00'
  secondary='#fff'
  percentage={75}
/>
1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago