You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
This commit adds a new component, material-circular-progress, which enables the use of both determinate and indeterminate circular progress indicators.
Fixes Issue #192Closes#365
* The circular progress directive is used to make loading content in your app as delightful and painless as possible by minimizing the amount of visual change a user sees before they can view and interact with content.
24
+
*
25
+
* For operations where the percentage of the operation completed can be determined, use a determinate indicator. They give users a quick sense of how long an operation will take.
26
+
*
27
+
* For operations where the user is asked to wait a moment while something finishes up, and it’s not necessary to expose what's happening behind the scenes and how long it will take, use an indeterminate indicator.
28
+
*
29
+
* @param {string} mode Select from one of two modes: determinate and indeterminate.
30
+
* @param {number=} value In determinate mode, this number represents the percentage of the circular progress. Default: 0
31
+
* @param {number=} diameter This specifies the diamter of the circular progress. Default: 48
0 commit comments