Skip to content

Commit

Permalink
Add link to fresh package
Browse files Browse the repository at this point in the history
Fixes #93
  • Loading branch information
hadley committed May 18, 2020
1 parent ae3392d commit 8c7c4ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basic-ui.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ Note that the first argument to `column()` is the width, and the width of each r

### Themes

In Chapter XYZ, we'll cover the full details of customising the visual appearance of your Shiny app. Creating a complete theme from scratch is a lot of work (but often worth it!), but you can get some easy wins by using the shinythemes package. The following code shows four options:
In Chapter XYZ, we'll cover the full details of customising the visual appearance of your Shiny app. Creating a complete theme from scratch is a lot of work (but often worth it!), but you can get some easy wins by using the [shinythemes](https://rstudio.github.io/shinythemes/) package. The following code shows four options:

```{r, results = FALSE}
theme_demo <- function(theme) {
Expand Down Expand Up @@ -546,7 +546,7 @@ ui_screenshot(theme_demo("sandstone"), "basic-ui/theme-sandstone")
ui_screenshot(theme_demo("united"), "basic-ui/theme-united")
```

As you can see, theming your app is quite straightforward: you just need to use the `theme` argument to `fluidPage()`. To find out what themes are available, and what they look like, take a look at the Shiny theme selector app at <https://shiny.rstudio.com/gallery/shiny-theme-selector.html>.
As you can see, theming your app is quite straightforward: you just need to use the `theme` argument to `fluidPage()`. To find out what themes are available, and what they look like, take a look at the Shiny theme selector app at <https://shiny.rstudio.com/gallery/shiny-theme-selector.html>. You might also want to take a look at the [fresh](https://dreamrs.github.io/fresh/) package, which provides even more themes.

### Exercises

Expand Down

0 comments on commit 8c7c4ca

Please sign in to comment.