Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/user-interface/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
R 徽标而不是应用程序标题_R_User Interface_Shiny_Navbar_Tabpanel - Fatal编程技术网

R 徽标而不是应用程序标题

R 徽标而不是应用程序标题,r,user-interface,shiny,navbar,tabpanel,R,User Interface,Shiny,Navbar,Tabpanel,如何在Shining app中放置标题而不是标题: navbarPage("title",theme = shinytheme("flatly"), tabPanel("Home", 菜单选项卡大小中的一些徽标? 我尝试了这个解决方案: 但某种程度上是行不通的。图像太大覆盖所有菜单项 Thx这是一个老问题,但我正在寻找解决方案,当我试图使用shinyapps.io发布我的应用程序时,我发现的其他问题导致了问题,这是因为我使用了fluidPage和navb

如何在Shining app中放置标题而不是标题:

navbarPage("title",theme = shinytheme("flatly"), 
                   tabPanel("Home",
菜单选项卡大小中的一些徽标? 我尝试了这个解决方案: 但某种程度上是行不通的。图像太大覆盖所有菜单项


Thx

这是一个老问题,但我正在寻找解决方案,当我试图使用shinyapps.io发布我的应用程序时,我发现的其他问题导致了问题,这是因为我使用了fluidPage和navbarPage,正如其他答案中所建议的那样

这是我从shinyapps.io的支持团队那里得到的解决方案

#~~~~~~~~~~~~~~~~~~~~~~~ LOGAN SERVICES DASHBOARD ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

                   ui <- shiny::navbarPage(

                     #the line of code places the logo on the left hand side before the tabs start. See image below.
                       title = div(img(src='LoganTogether-LOGO.jpg',style="margin-top: -14px; padding-right:10px;padding-bottom:10px", height = 60)),
                       #theme = "journal",
                       windowTitle="Logan Together: Service Map",


          #MAIN TAB~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                       

                   tabPanel("Interactive map", # then you go on to code the rest of your UI as normal
#~~~~~~~~~~~~~~~~~~~~~~~~~洛根服务仪表板~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
用户界面