crunchPage {crunchy}R Documentation

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

## 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)

[Package crunchy version 0.3.3 Index]