-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Use tagList instead of fluidPage #9
base: main
Are you sure you want to change the base?
Conversation
So @tyluRp |
@doug-friedman @tyluRp the .Rprofile file is in the repository as .Rprofile.example to fix an issue with deployment. Locally, .Rprofile is ignored so developers wishing to create a local env can safely copy .Rprofile.example to their local .Rprofile without affecting their commits or the deployment. Ref: rstudio/renv#453 |
@CCorrado Got it! @doug-friedman Exactly! library(shiny)
fluidPage(
fluidRow()
)
#> <div class="container-fluid">
#> <div class="row"></div>
#> </div>
tagList(
fluidRow()
)
#> <div class="row"></div> |
Also, I wonder what would happen if the if (interactive()) source("renv/activate.R") I have no idea if interactive would return TRUE or FALSE during the deployment though. |
Removes the 15px padding on the left and right sides of the app.
I noticed the
.Rprofile
was either removed or renamed to.Rprofile.example
but that might need to be reversed. Therenv
stuff will no longer be sourced on a fresh R session, so developers will need to do it manually if deploying that app locally on their own computer.