For the code below, I need to create a space between leafletOutput maps. I tried this by adding br()s but it only creates space for some of the map outputs. My attempted code appears in the second chunk of code below.
#My original code
mainPanel(
fluidRow(
column(width = 4,shinyjs::useShinyjs(), leafletOutput("svi", height = "500px")),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("BlackP", height = "500px")),
column(width = 4,shinyjs::useShinyjs(), leafletOutput("bi_svi_BlackP", height = "500px")),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("BlackACS", height = "500px")),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("BlackP_dup", height = "500px")),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("bi_ACSB_BlackP", height = "500px")),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("HispanicACS", height = "500px")),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("HispanicP", height = "500px"))
)
#My attempted code
mainPanel(
fluidRow(
column(width = 4,shinyjs::useShinyjs(), leafletOutput("svi", height = "500px")),
br(),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("BlackP", height = "500px")),
br(),
column(width = 4,shinyjs::useShinyjs(), leafletOutput("bi_svi_BlackP", height = "500px")),
br(),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("BlackACS", height = "500px")),
br(),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("BlackP_dup", height = "500px")),
br(),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("bi_ACSB_BlackP", height = "500px")),
br(),
column(width = 4, shinyjs::useShinyjs(), leafletOutput("HispanicACS", height = "500px")),
br()
column(width = 4, shinyjs::useShinyjs(), leafletOutput("HispanicP", height = "500px"))
)