Build a Framework7 progress bar

f7Progress(id, value = NULL, color)

Arguments

id

Progress id. Must be unique.

value

Progress value. Between 0 and 100. If NULL the progress bar is infinite.

color

Progress color. See http://framework7.io/docs/progressbar.html.

Author

David Granjon, dgranjon@ymail.com

Examples

if(interactive()){ library(shiny) library(shinyMobile) shiny::shinyApp( ui = f7Page( title = "Progress", f7SingleLayout( navbar = f7Navbar(title = "f7Progress"), f7Block(f7Progress(id = "pg1", value = 10, color = "pink")), f7Block(f7Progress(id = "pg2", value = 100, color = "green")), f7Block(f7Progress(id = "pg3", value = 50, color = "orange")) ) ), server = function(input, output) {} ) }