crunchPage function

Build a Crunchy UI

Build a Crunchy UI

These are no longer necessary. Just use the shiny ones and it just works. These functions are left here for backwards compatibility.

crunchPage(...) crunchFluidPage(...) crunchFillPage(...) crunchNavbarPage(...)

Arguments

  • ...: arguments passed to fluidPage, fillPage or navbarPage

Returns

The result of fluidPage, fillPage or navbarPage

Examples

## Not run: crunchPage( fluidRow( column(6, selectInput("filter", label="Filter", choices=filterList, selected="All"), br(), plotOutput("funnel1", height="300"), ), column(6, selectInput("brand", label="Competitor", choices=brands, selected="Nike"), br(), plotOutput("funnel2", height="300"), ) ) ) ## End(Not run)