Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nteetor/shinystate
https://github.com/nteetor/shinystate
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nteetor/shinystate
- Owner: nteetor
- Created: 2018-11-15T19:05:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-16T16:26:55.000Z (about 6 years ago)
- Last Synced: 2024-08-13T07:13:07.931Z (4 months ago)
- Language: R
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - nteetor/shinystate - (R)
README
# Shiny, stateful, modular
1. Fork project
2. Open locally
3. Simple example```R
devtools::load_all()
remotes::install_github("nteetor/yonder")App(
Component(
template = div(
buttonInput(id = "click", "A simple button") %>%
background("green") %>%
margin(3)
),
static = "A static string",
function(num = input$click) {
print(static)
}
)
)
```