Is it possible for descriptionBlock to take a stored value as a number similar to what can be done in a Flexdashboard valueBox. For example,
column(
width = 4,
descriptionBlock(
text = "Attendance above 90%",
number = "`r on_track_breakdown_attendance`", #a way to accept a value that changes daily
numberColor = "success",
header = "Attendance",
rightBorder = TRUE,
marginBottom = FALSE
I am trying to determine if I can update a number in the descriptionBlock (since the number updates daily in my data). My question is...Is there a way to update the number on the server side so that it updates the UI? It's not exactly similar to a valueBox in a Flexdashboard, but I can update a valueBox daily in a Flexdashboard with r abc data because its a markdown document. I'm trying to figure out if there is something equivalent in Shiny using a descriptionBlock.