ProgressBar

Progress bar is an indicator used to present progress of some activity in the app.

Usage

import * as React from 'react';
import { ProgressBar } from 'react-native-paper';

const MyComponent = () => (
  <ProgressBar progress={0.5} color={Colors.red800} />
);

Props

progress (required)
Type: number

Progress value (between 0 and 1).

color
Type: string

Color of the progress bar.

style
Type: any
theme
Type: Theme