Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/RinteRface/shiny386

Provides an old school Bootstrap 4 template for Shiny. It is built on top of the Bootstrap 386 HTML template
https://github.com/RinteRface/shiny386

bootstrap4 oldschool r shiny template

Last synced: about 2 months ago
JSON representation

Provides an old school Bootstrap 4 template for Shiny. It is built on top of the Bootstrap 386 HTML template

Awesome Lists containing this project

README

        

# shiny386

[![CRAN status](https://www.r-pkg.org/badges/version/shiny386)](https://CRAN.R-project.org/package=shiny386)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![R build status](https://github.com/RinteRface/shiny386/workflows/R-CMD-check/badge.svg)](https://github.com/RinteRface/shiny386/actions)
[![R-CMD-check](https://github.com/RinteRface/shiny386/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/RinteRface/shiny386/actions/workflows/R-CMD-check.yaml)

The goal of shiny386 is to provide an old school Bootstrap 4 template for Shiny. It is built on top of the [Bootstrap 386](http://kristopolous.github.io/BOOTSTRA.386/demo.html) HTML template.

## Installation

You can install the released version of shiny386 from Github with:

``` r
remotes::install_github("RinteRface/shiny386")
```

## Example

This is a basic example which shows you how to solve a common problem:

``` r
library(shiny)
library(shiny386)
ui <- page_386(
card_386(
title = "My card",
"This is my card",
br(),
card_link_386(href = "https://www.google.com", "More"),
footer = "Card footer"
)
)

server <- function(input, output, session) {}
shinyApp(ui, server)
```