Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
NotificationsYou must be signed in to change notification settings

rstudio/miniUI

Repository files navigation

Provides UI widget and layout functions for writing Shiny apps that work well on small screens. Designed to work especially well for creating Shiny Gadgets.

Inspired by the lovelyRatchet CSS framework, though currently miniUI doesn't use any of Ratchet's CSS code.

Installing

devtools::install_github("rstudio/miniUI")

Getting started

Check out theDesigning Gadget UI article onshiny.posit.co.

Example

Screenshot

ui<- miniPage(  gadgetTitleBar("Shiny gadget example"),  miniTabstripPanel(    miniTabPanel("Parameters",icon= icon("sliders"),      miniContentPanel(        sliderInput("year","Year",1978,2010, c(2000,2010),sep="")      )    ),    miniTabPanel("Visualize",icon= icon("area-chart"),      miniContentPanel(        plotOutput("cars",height="100%")      )    ),    miniTabPanel("Map",icon= icon("map-o"),      miniContentPanel(padding=0,        leafletOutput("map",height="100%")      ),      miniButtonBlock(        actionButton("resetMap","Reset")      )    ),    miniTabPanel("Data",icon= icon("table"),      miniContentPanel(DT::dataTableOutput("table")      )    )  ))

Full source at:https://github.com/rstudio/miniUI/blob/master/examples/tabs.R

License

The miniUI package is licensed under theGPLv3.


CompilingLess source to CSS

You generally don't need to do this. This build step is only needed if you want to contribute to the development of the package by modifying the built-in CSS styles.

One-time setup

Prerequisite: You must have Node.js installed.

# Install the grunt command if necessarywhich grunt|| sudo npm install -g grunt-cli# Install dependenciescd toolsnpm install

Building

cd toolsgrunt

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors3

  •  
  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp