Progress bar

Progress bars are a great way of providing feedback when a task is running. Unlike spinners, they give the user a clear idea of how long the given task will take.

bpk-component-progress

Backpack React Native Progress component.

Default

Day Night
bpk-component-progress default iPhone 8 simulator bpk-component-progress default iPhone 8 simulator - dark mode
bpk-component-progress default Google Pixel emulator bpk-component-progress default Google Pixel emulator - dark mode

Bar

Day Night
bpk-component-progress bar iPhone 8 simulator bpk-component-progress bar iPhone 8 simulator - dark mode
bpk-component-progress bar Google Pixel emulator bpk-component-progress bar Google Pixel emulator - dark mode

Installation

Check the main Readme for a complete installation guide.

Usage


                                                
                                                import React, { Component } from 'react';
                                                import { View, StyleSheet } from 'react-native';
                                                import BpkProgress from 'backpack-react-native/bpk-component-progress';
                                                import { spacingBase } from '@skyscanner/bpk-foundations-react-native/tokens/base.react.native';
                                                
                                                const styles = StyleSheet.create({
                                                  container: {
                                                    flex: 1,
                                                    justifyContent: 'center',
                                                    padding: spacingBase,
                                                  },
                                                });
                                                
                                                export default class App extends Component {
                                                  render() {
                                                    return (
                                                      <View style={styles.container}>
                                                        <BpkProgress min={0} max={100} value={10} accessibilityLabel="0 of 100" />
                                                        <BpkProgress min={0} max={100} value={10} accessibilityLabel="0 of 100" type="Bar" />
                                                      </View>
                                                    );
                                                  }
                                                }

Props

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

Theme Props

  • progressFillBackgroundColor,
  • progressTrackBackgroundColor