-
-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you support indeterminate progress bar? #57
Comments
Yes, it is supported now. You can do
A count of |
Can we get rid of the percentage on the left? |
I just changed this behavior for 3.2.0. Since an indeterminate bar is just a spinner, I made it a spinner. bar := NewOptions(-1,
OptionSetWidth(10),
OptionSetDescription("indeterminate spinner"),
OptionShowIts(),
OptionShowCount(),
OptionSpinnerType(1),
)
for i := 0; i < 10; i++ {
time.Sleep(100 * time.Millisecond)
bar.Add(1)
} |
I Love it ... specially spinner types |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a case where I want to show a progress but I have no knowledge when the task will finish.
The text was updated successfully, but these errors were encountered: