OptionSetWidth sets the width of the bar
(s int)
| 200 | |
| 201 | // OptionSetWidth sets the width of the bar |
| 202 | func OptionSetWidth(s int) Option { |
| 203 | return func(p *ProgressBar) { |
| 204 | p.config.width = s |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | // OptionSetSpinnerChangeInterval sets the spinner change interval |
| 209 | // the spinner will change according to this value. |
no outgoing calls
searching dependent graphs…