We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fca9a0 commit e6bc711Copy full SHA for e6bc711
src/progress/progress.android.ts
@@ -24,7 +24,7 @@ export class Progress extends ProgressBase {
24
if (this.nativeViewProtected.getVisibility() === android.view.View.VISIBLE) {
25
this.nativeViewProtected.setVisibility(android.view.View.GONE);
26
this.nativeViewProtected.setIndeterminate(value);
27
- this.nativeViewProtected.setVisibility(android.view.View.VISIBLE);
+ this.nativeViewProtected.setVisibility(this.busy ? android.view.View.VISIBLE : android.view.View.INVISIBLE);
28
} else {
29
30
}
0 commit comments