All Projects → RinteRface → Shinybulma

RinteRface / Shinybulma

Licence: other
🌐 Bulma.io for Shiny

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Shinybulma

Db Dashboard
Project files of the article featured here: http://db.rstudio.com/best-practices/dashboards/
Stars: ✭ 58 (-32.56%)
Mutual labels:  shiny
Startapp
The START App: R Shiny Transcriptome Analysis Resource Tool
Stars: ✭ 73 (-15.12%)
Mutual labels:  shiny
Svelte Bulma Components
Collection of Bulma UI components to be used in Svelte or standalone
Stars: ✭ 80 (-6.98%)
Mutual labels:  bulma
Vuexfire Admin
A Vue / Vuexfire app with Firebase auth. Based on vue-admin, using vuex, vuexfire, vue-router and firebase as the backend.
Stars: ✭ 60 (-30.23%)
Mutual labels:  bulma
Rubel
Rubel is a cms built with Laravel and React.
Stars: ✭ 70 (-18.6%)
Mutual labels:  bulma
Buefy
Lightweight UI components for Vue.js based on Bulma
Stars: ✭ 9,025 (+10394.19%)
Mutual labels:  bulma
Bulrush
A Bulma-based Pelican blog theme; clean, flexible and responsive.
Stars: ✭ 53 (-38.37%)
Mutual labels:  bulma
Gatsby Bulma Quickstart
🚀 + ⚛️ A Quick Way to bootstrap your next Gatsby + Bulma site.
Stars: ✭ 84 (-2.33%)
Mutual labels:  bulma
Docker Vue
Frontend for DockerRails, built with Vue.js
Stars: ✭ 72 (-16.28%)
Mutual labels:  bulma
Ayudapy
Platform to help people help people
Stars: ✭ 79 (-8.14%)
Mutual labels:  bulma
Vuepress Theme Bulma
A pure Bulma.css theme for VuePress
Stars: ✭ 66 (-23.26%)
Mutual labels:  bulma
Hepek
Web content generators in Scala. Intuitive, scalable, powerful.
Stars: ✭ 69 (-19.77%)
Mutual labels:  bulma
Shufflecards
✨ Create magical grid layouts in Shiny & Markdown
Stars: ✭ 76 (-11.63%)
Mutual labels:  shiny
Sever
🔪Good-looking problems: customise your Shiny disconnected screen and error messages
Stars: ✭ 60 (-30.23%)
Mutual labels:  shiny
Charcoal
A Vue.js & Bulma Starter Kit.
Stars: ✭ 81 (-5.81%)
Mutual labels:  bulma
Ember Bulma
Ember-Bulma is a collection of Ember components leveraging Bulma CSS framework
Stars: ✭ 57 (-33.72%)
Mutual labels:  bulma
Stminsights
A Shiny Application for Inspecting Structural Topic Models
Stars: ✭ 74 (-13.95%)
Mutual labels:  shiny
Gfonts
🔤 Offline Google Fonts for rmarkdown and shiny
Stars: ✭ 85 (-1.16%)
Mutual labels:  shiny
Bottle Vue Kickstart
🍕 Very basic Bottle kickstart kit with Vue.js and Webpack. Included Axios, Autoprefixer, Babel, Webpack config, demo app with Bulma and Web font loader.
Stars: ✭ 83 (-3.49%)
Mutual labels:  bulma
Apps
Carson Sievert's web applications
Stars: ✭ 77 (-10.47%)
Mutual labels:  shiny

shinybulma

R build status lifecycle CRAN status

bulma.io for Shiny. Contains extensions: bulma-extensions as well as themes.

Installation

# install.packages("devtools")
devtools::install_github("RinteRface/shinybulma")

Example

library(shiny)
library(shinybulma)

shinyApp(
  ui = bulmaPage(
    bulmaHero(
      fullheight = TRUE,
      color = "primary",
      bulmaHeroBody(
        bulmaContainer(
          bulmaTitle("Shiny meets Bulma!"),
          bulmaSubtitle("A neat framework for your Shiny apps.")
        )
      )
    ),
    bulmaSection(
      bulmaTileAncestor(
        bulmaTileParent(
          vertical = TRUE,
          bulmaTileChild(
            bulmaTitle("Tile 1"),
            p("Put some data here"),
            color = "link"
          ),
          bulmaTileChild(
            bulmaTitle("Tile 2"),
            plotOutput("chart"),
            color = "danger"
          )
        ),
        bulmaTileParent(
          vertical = TRUE,
          bulmaTileChild(
            bulmaTitle("Tile 3"),
            p("Put some data here"),
            color = "warning"
          ),
          bulmaTileChild(
            bulmaTitle("Tile 3"),
            ("Put some data here"),
            color = "info"
          )
        )
      )
    )
  ),
  server = function(input, output) {
    output$chart <- renderPlot({
      plot(x = runif(20, 5, 10), y = runif(20, 10, 12))
    })
  }
)

Extensions demo

https://dgranjon.shinyapps.io/bulmaExtension/

Code of Conduct

Please note that the shinybulma project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].