crunchy (version 0.3.3)

crunchPage: Build a Crunchy UI

Description

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

Usage

crunchPage(...)

crunchFluidPage(...)

crunchFillPage(...)

crunchNavbarPage(...)

Arguments

...

arguments passed to fluidPage, fillPage or navbarPage

Value

The result of fluidPage, fillPage or navbarPage

Examples

Run this code
# 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"),
        )
    )
)
# }

Run the code above in your browser using DataLab