Skip to content

Commit e6bc711

Browse files
committed
fix(progress): indeterminate / busy work together
1 parent 9fca9a0 commit e6bc711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/progress/progress.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class Progress extends ProgressBase {
2424
if (this.nativeViewProtected.getVisibility() === android.view.View.VISIBLE) {
2525
this.nativeViewProtected.setVisibility(android.view.View.GONE);
2626
this.nativeViewProtected.setIndeterminate(value);
27-
this.nativeViewProtected.setVisibility(android.view.View.VISIBLE);
27+
this.nativeViewProtected.setVisibility(this.busy ? android.view.View.VISIBLE : android.view.View.INVISIBLE);
2828
} else {
2929
this.nativeViewProtected.setIndeterminate(value);
3030
}

0 commit comments

Comments
 (0)