-
Notifications
You must be signed in to change notification settings - Fork 29
/
tabSetPill.Rd
61 lines (59 loc) · 1.33 KB
/
tabSetPill.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/tabs.R
\name{tabSetPill}
\alias{tabSetPill}
\title{Create a gentelella tabSetPill}
\usage{
tabSetPill(..., right = FALSE)
}
\arguments{
\item{...}{Slot for \link{tabPill}.}
\item{right}{If TabSetPanel start from the right side. FALSE by default.}
}
\description{
Create a gentelella tabSetPill
}
\examples{
if (interactive()) {
library(shiny)
library(gentelellaShiny)
shinyApp(
ui = gentelellaPageCustom(
gentelellaBody(
tabSetPill(
tabPill(
tabName = "Home",
active = TRUE,
"Raw denim you probably haven't heard of
them jean shorts Austin. Nesciunt tofu stumptown
aliqua, retro synth master cleanse. Mustache
cliche tempor, williamsburg carles vegan helvetica.
Reprehenderit butcher retro keffiyeh dreamcatcher synth.
Cosby sweater eu banh mi, qui irure terr."
),
tabPill(
tabName = "Profile",
active = FALSE,
sliderInput(
"obs",
"Number of observations:",
min = 0,
max = 1000,
value = 500
),
plotOutput("distPlot")
)
)
)
),
server = function(input, output, session) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
}
)
}
}
\author{
David Granjon, \email{[email protected]}
}