Hi everyone,
I'm new in shiny world, so maybe my question is already asked, apologize for that.
Recently, i have a problem with shinyboard package (ui side), probably due to i update my R version (i already uninstall/install R and R-Studio and have last releases, i use MacOs 10.10.5) or cause i use some new packages like leaflet or plotly.
Here is an example, with "nothing inside" :
# Some libraries i use to use
library(leaflet)
library(shiny)
library(plotly)
library(shinydashboard)
library(dplyr)
ui <- dashboardPage(skin = "purple",
dashboardHeader(title="Test"),
dashboardSidebar(
sidebarMenu(
menuItem("Blabla1", tabName = "blabla1", icon = icon("twitter-square")),
menuItem("Blabla2", tabName = "blabla2", icon = icon("question-circle"))
)
),
dashboardBody(
)
)
When i use shiny package, it works fine, it's just when i use dashboard instruction, i have this error :
Error in htmlDependency("font-awesome", "5.3.1", "www/shared/fontawesome", :
argument inutilisé (package = "shiny")
Unused argument in shiny package?
I specify that the package / instructions shinydashboard worked very well until now and i have already develop a small application with shinydashboard (and so doesnt work now).
Thanks in advance,