Learn R Programming

occupationMeasurement (version 0.3.2)

button_next: Go to the next page

Description

Buttons to navigate between pages.

Usage

button_next(label = "Weiter")

button_previous(label = "Zurück")

Value

shiny Action Button

Arguments

label

What label the button should have.

Functions

  • button_previous(): Go to the previous page

See Also

new_page()

Examples

Run this code
data.table::setDTthreads(1)

if (FALSE) {
very_simple_page <- new_page(
  page_id = "example",
  render = function(session, run_before_output, input, output, ...) {
    list(
      shiny::tags$h1("My test page"),
      button_previous(),
      button_next()
    )
  }
)
}

Run the code above in your browser using DataLab