Customizable sidebar panel for inclusion of various UI elements
Usage
altPanel(..., width = 4, border = FALSE, shadow = FALSE)
Arguments
- ...
List of content
- width
Width of the sidebar panel
- border
Should border be declared for the panel
- shadow
Should a shadow be added to the panel
Value
Creates an alternate container for displaying contents
Note
For more information on the features of the sidebar panel, look through the Github examples
Examples
# \donttest{
altPanel("content 2")
#> <div class="col-12 col-md-4 ">
#> <form class="well" role="complementary">content 2</form>
#> </div>
# }