Index of /web/packages/flashCard/readme

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[TXT]README.html2020-08-13 11:10 5.6K 
[DIR]man/2020-08-13 11:10 -  

README

flashCard

The goal of flashCard is to …

Installation

devtools::install_github("jienagu/flashCard")

This is package is to create a flash card for Shiny application with desired data.frame.

Introduction

Simply create a data frame with front column and back column. Then put this data frame into flashCard() function, we will get a nice flash card.

library(flashCard)
df1 <- data.frame(
  front = c("Title front","contentfront", "content second line"),
  back =c("Title back","content back", "second line")
)
flashCard(df1, elementId = "card", front_text_color = "white")