group_box | R Documentation |
Only works in template framework provided by 'shidashi'
package, see use_template
group_box(title, ..., class = NULL) flex_group_box(title, ..., class = NULL, wrap = "wrap", direction = "row")
title |
the box title |
... |
elements to be included or to be passed to other methods |
class |
additional class of the box |
wrap, direction |
see |
A 'HTML' tag
library(shiny) library(shidashi) library(ravedash) group_box( title = "Analysis Group A", selectInput("a", "Condition", choices = c("A", "B")), sliderInput("b", "Time range", min = 0, max = 1, value = c(0,1)) ) flex_group_box( title = "Project and Subject", flex_item( "Some input 1" ), flex_item( "Some input 2" ), flex_break(), flex_item( "Some input in new line" ) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.