Build a Framework7 infinite progress bar

f7ProgressInf(color = NULL)

Arguments

color

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

Note

Buggy display when status is not NULL.

Author

David Granjon, dgranjon@ymail.com

Examples

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) {} ) }