diff --git a/_examples/spinTipBar/go.mod b/_examples/spinTipBar/go.mod new file mode 100644 index 0000000..0d51fbf --- /dev/null +++ b/_examples/spinTipBar/go.mod @@ -0,0 +1,5 @@ +module github.com/vbauerster/mpb/_examples/spinTipBar + +go 1.14 + +require github.com/vbauerster/mpb/v7 v7.0.0 diff --git a/_examples/spinTipBar/main.go b/_examples/spinTipBar/main.go new file mode 100644 index 0000000..6b0a7c2 --- /dev/null +++ b/_examples/spinTipBar/main.go @@ -0,0 +1,30 @@ +package main + +import ( + "math/rand" + "time" + + "github.com/vbauerster/mpb/v6" + "github.com/vbauerster/mpb/v6/decor" +) + +func main() { + // initialize progress container, with custom width + p := mpb.New(mpb.WithWidth(80)) + + total := 100 + name := "Single Bar:" + bar := p.Add(int64(total), + mpb.NewBarFiller(mpb.BarStyle().Tip(`-`, `\`, `|`, `/`)), + mpb.PrependDecorators(decor.Name(name)), + mpb.AppendDecorators(decor.Percentage()), + ) + // simulating some work + max := 100 * time.Millisecond + for i := 0; i < total; i++ { + time.Sleep(time.Duration(rand.Intn(10)+1) * max / 10) + bar.Increment() + } + // wait for our bar to complete and flush + p.Wait() +}