-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.qmd
78 lines (63 loc) · 1.06 KB
/
test.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
title: "Untitled"
format: html
---
```{r}
#| label: setup
#| echo: false
#| eval: true
#| warning: false
#| message: false
#| include: true
library(bslib)
library(tidyverse)
library(htmlwidgets)
library(bsicons)
library(shiny)
```
```{r}
#| label: card
#| echo: false
#| eval: true
#| warning: false
#| message: false
#| include: true
bslib::card(
bslib::card_title(
"This is the title header"
)
,bslib::card_body(
shiny::p("this is a paragraph body")
,"this is another paragraph body"
,shiny::markdown("[link](www.bbcnews.com)")
,full_screen=TRUE
)
,theme="purple"
)
```
```{r}
bslib::value_box(
title = "I got",
value = "99 problems",
theme = "purple",
showcase = bs_icon("music-note-beamed"),
p("bslib ain't one", bs_icon("emoji-smile")),
p("hit me", bs_icon("suit-spade"))
)
```
```{r}
value_box(
title = "3rd value",
value = "789",
showcase = bs_icon("pie-chart"),
theme = "pink",
p("The 4th detail"),
p("The 5th detail"),
p("The 6th detail"),
"test"
)
```
:::{.card}
## hello
text
:::