Learn R Programming

shinyMobile (version 0.7.0)

f7ProgressInf: Create a Framework7 infinite progress bar

Description

Build a Framework7 infinite progress bar

Usage

f7ProgressInf(color = NULL)

Arguments

Examples

Run this code
# NOT RUN {
if(interactive()){
 library(shiny)
 library(shinyMobile)

 shiny::shinyApp(
   ui = f7Page(
    title = "Progress Infinite",
    f7SingleLayout(
     navbar = f7Navbar(title = "f7ProgressInf"),
     f7Block(
      f7BlockTitle(size = "large", "Infinite progress"),
      f7ProgressInf(),
      f7BlockTitle(size = "large", "Infinite progress with color"),
      f7ProgressInf(color = "yellow")
    )
    )
   ),
   server = function(input, output) {}
 )
}

# }

Run the code above in your browser using DataLab