Backpack React Native progress component.
npm install react-native-bpk-component-progress> Backpack React Native Progress component.
``sh`
npm install react-native-bpk-component-progress --save-dev
`js
import React, { Component } from 'react';
import { View, StyleSheet } from 'react-native';
import BpkProgress from 'react-native-bpk-component-progress';
import { spacingBase } from 'bpk-tokens/tokens/base.react.native';
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: spacingBase,
},
});
export default class App extends Component {
render() {
return (
);
}
}
`
| Property | PropType | Required | Default Value |
| ------------------ | ------------------------------------- | -------- | ------------- |
| accessibilityLabel | oneOfType(string, func) | true | - |
| max | number | true | - |
| min | number | true | - |
| value | number | true | - |
| fillStyle | object | false | - |
| style | object | false | - |
| theme | See Theme Props below | false | - |
| type | oneOf('default', 'bar') | false | default |
* progressFillBackgroundColor,progressTrackBackgroundColor`
*