We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See second progress bar:
library(shiny) library(shinyMobile) app <- shinyApp( ui = f7Page( title = "Update Progress", f7SingleLayout( navbar = f7Navbar(title = "f7Progress"), f7BlockTitle("Progress with value"), f7Block( f7Progress(id = "pg1", value = 10, color = "blue") ), f7Slider( inputId = "obs", label = "Progress value", max = 100, min = 0, value = 50, scale = TRUE ), f7BlockTitle("Infinite progress"), f7Block( f7Progress(id = "pg2", value = NULL, color = "red") ) ) ), server = function(input, output, session) { observeEvent(input$obs, { updateF7Progress(id = "pg1", value = input$obs) }) } ) if (interactive() || identical(Sys.getenv("TESTTHAT"), "true")) app
To fix: class should be progress-infinite when value is NULL
value
NULL
The text was updated successfully, but these errors were encountered:
2ea5e79
No branches or pull requests
See second progress bar:
To fix: class should be progress-infinite when
value
isNULL
The text was updated successfully, but these errors were encountered: