From 0b496e2e7b1bb3c447dac72a31ab12b3605c38c3 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 6 Nov 2015 10:41:33 +0000 Subject: [PATCH] update website --- docs/progressbarandroid.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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> ); },