Nothing
library(shiny)
library(shinyChakraUI)
library(fontawesome)
shinyUI(
chakraPage(
br(),
chakraComponent(
"drawerContainer",
chakraDrawer(
"drawer",
openButton =
Tag$Button(
colorScheme = "teal",
"Open"
),
options =
chakraDrawerOptions(placement = "top"),
header =
Tag$DrawerHeader(
"Make a choice"
),
body =
Tag$DrawerBody(
withStates(
Tag$Flex(
Tag$RadioGroup(
id = "choosepanel",
onChange =
jseval('(value) => {setState("hidden", value !== "plot")}'),
value = "table",
Tag$Stack(
direction = "row",
Tag$Radio(
value = "table", tags$span(fa_i("table"), " Table")
),
Tag$Radio(
value = "plot", tags$span(fa_i("chart-line"), " Graphic")
)
)
),
Tag$Spacer(),
Tag$RadioGroup(
id = "color",
hidden = getState("hidden"),
value = "red",
Tag$Stack(
direction = "row",
Tag$Radio(value = "red", "Red"),
Tag$Radio(value = "blue", "Blue")
)
)
),
states = list(hidden = TRUE)
)
),
footer =
Tag$DrawerFooter()
),
br(), tags$hr(), br()
######################
),
uiOutput("panel")
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.