diff --git a/docs/progressbarandroid.html b/docs/progressbarandroid.html index 6bf69538d2f..3932c00b523 100644 --- a/docs/progressbarandroid.html +++ b/docs/progressbarandroid.html @@ -12,7 +12,7 @@ that the app is loading or there is some activity in the app.

Example:

style={styles.loadingComponent} /> ); -},

Edit on GitHubProps #

styleAttr STYLE_ATTRIBUTES #

Style of the ProgressBar. One of:

  • Horizontal
  • Small
  • Large
  • Inverse
  • SmallInverse
  • LargeInverse

testID string #

Used to locate this view in end-to-end tests.

Edit on GitHubExamples #

'use strict'; +},

Edit on GitHubProps #

color string #

Color of the progress bar.

styleAttr STYLE_ATTRIBUTES #

Style of the ProgressBar. One of:

  • Horizontal
  • Small
  • Large
  • Inverse
  • SmallInverse
  • LargeInverse

testID string #

Used to locate this view in end-to-end tests.

Edit on GitHubExamples #

'use strict'; var ProgressBar = require('ProgressBarAndroid'); var React = require('React'); @@ -53,6 +53,10 @@ that the app is loading or there is some activity in the app.

Example:

<UIExplorerBlock title="Large Inverse ProgressBar"> <ProgressBar styleAttr="LargeInverse" /> </UIExplorerBlock> + + <UIExplorerBlock title="Large Red ProgressBar"> + <ProgressBar styleAttr="Large" color="red" /> + </UIExplorerBlock> </UIExplorerPage> ); },