# NOT RUN {
### Striped variant
progressOutlet(
id = "progress1",
bar(
id = "task1",
value = 41,
striped = TRUE # <-
) %>%
background("blue")
)
### Labeled bars
progressOutlet(
id = "progress2",
bar(
id = "task2",
value = 64,
label = "Trees planted" # <-
) %>%
background("green")
)
### Multiple bars
progressOutlet(
id = "progress3",
bar(
id = "task3",
value = 40
) %>%
background("red"),
bar(
id = "task4",
value = 20
) %>%
background("orange")
)
# }
Run the code above in your browser using DataLab