Create a butler.
Create an object to show a loading bar to display at the top of the application.
new()Butler$new( thickness = 5, colors = list(`0` = "red", `.3` = "blue", `1` = "green"), shadow_blur = 5, shadow_color = "rgba(0, 0, 0, .5)" )
thicknessThickness of the bar.
colorsList of gradient color stops used to draw the progress bar.
shadow_blurShadow blur size.
shadow_colorShadow color.
Create a butler.
\dontrun{Butler$new()}
show()Butler$show()
Show the butler.
\dontrun{Butler$new()$show()}
print()Butler$print()
print the butler
hide()Butler$hide()
Hide the butler.
\dontrun{Butler$new()$show()$hide()}
clone()The objects of this class are cloneable with this method.
Butler$clone(deep = FALSE)
deepWhether to make a deep clone.
## ------------------------------------------------ ## Method `Butler$new` ## ------------------------------------------------ if (FALSE) Butler$new() ## ------------------------------------------------ ## Method `Butler$show` ## ------------------------------------------------ if (FALSE) Butler$new()$show() ## ------------------------------------------------ ## Method `Butler$hide` ## ------------------------------------------------ if (FALSE) Butler$new()$show()$hide()