Learn R Programming

ggplotAssist (version 0.1.3)

uiOutput3: Create side-by side uiOutput

Description

Create side-by side uiOutput

Usage

uiOutput3(...)

Arguments

...

arguments to be passed to uiOutput

Examples

Run this code
# NOT RUN {
library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
     ui <- fluidPage(
          textInput4("name","name",""),
          uiOutput3("test")
     )
     server <- function(input, output) {
          
     }
     shinyApp(ui, server)
}  
# }

Run the code above in your browser using DataLab