RinteRface / shinybulma

🌐 Bulma.io for Shiny
https://rinterface.github.io/shinybulma/
Other
111 stars 15 forks source link

bulmaSteps #35

Closed fmmattioni closed 3 years ago

fmmattioni commented 3 years ago

Hey guys!

I really love the bulmaSteps() component. Would you have any tips on how I could use this in bs4Dash?

I tried the following:

shinybulma:::add_bulma_deps(tagList(), theme = "default")
shinybulma::bulmaSteps(
      shinybulma::bulmaStepItem(
        color = "success",
        completed = FALSE,
        active = TRUE,
        shinybulma::bulmaStepDetail(
          color = NULL,
          completed = FALSE,
          title = "Step 1",
          marker = 1,
          "This is the first step of the process"
        )
      )
    )

But that did not seem to work really well.

Here is the repo for a reprex: https://github.com/fmmattioni/shinybulmareprex

Thank you! Felipe

DivadNojnarg commented 3 years ago

Hi @fmmattioni. By experience, I would avoid mixing different styles. bulma and Bootstrap 4 are very different, which will trigger many conflicts.

fmmattioni commented 3 years ago

Hey @DivadNojnarg!

That makes sense.. thanks a lot for the reply! I am using the pagination component from Bootstrap 4 at the moment, and it is also quite nice 😄