Getting Started

knitr::include_url("https://rinterface.com/shiny/talks/rencontresR2021/slides.html")

Introduction

{shinyMobile} is built on top of the latest framework7 template (V5.7.14). It may be used for different purposes:

Custom skins

{shinyMobile} has 3 skins:

It automatically detects if the app is running with android or iOS and accordingly adapt the layout. It is of course possible to apply the iOS skin on android and inversely, even though not recommended.

{shinyMobile} also provides 2 themes, namely light and dark. While framework7 allows to apply dark or light theme not only at the global level but at the "widget level", {shinyMobile} does not support that feature, to improve the overall consistency. Only panels can have a color independent of the global theme.

Layouts

{shinyMobile} brings 3 out of the box layouts:

New Inputs

{shinyMobile} has its own custom input widgets with unique design for each skin (iOS/android/aurora):

It also has custom update functions to act on the server side:

Finally, it also provides tools to dynamically update widgets on the server side like cards, accordions, tabs, panels and more:

Create your first App

Select a template

This choice is crucial when you are developing an App. It depends on the complexity of your visualizations and content. If your plan is to develop a simple graph or table, you should go for the f7SingleLayout() option. For more complex design, the best is f7TabLayout(). f7SplitLayout() is specific for tablets and desktop apps.

Simple Layout

f7SingleLayout(
  ..., 
  navbar, 
  toolbar = NULL, 
  panels = NULL,
  appbar = NULL
)

While only the navbar is mandatory, other components such as the toolbar are optionnal for the f7SingleLayout().

Tabs Layout

f7TabLayout(
  ..., 
  navbar, 
  panels = NULL, 
  appbar = NULL
)

The ... argument requires f7Tabs(..., id = NULL, swipeable = FALSE, animated = TRUE). The id argument is mandatory if you want to exploit the updateF7Tabs() function. f7Tabs() expect to have f7Tab(..., tabName, icon = NULL, active = FALSE) passed inside.

Split Layout (similar to sidebarLayout in {shiny})

f7SplitLayout(.
  ..., 
  navbar, 
  sidebar, 
  toolbar = NULL, 
  panels = NULL,
  appbar = NULL
)

The main content goes in the ... parameter. Navigation items are gathered in the sidebar slot. The sidebar expect a f7Panel. Importantly, the side parameter must be set to "left" and the style to "reveal". The navigation menu is organized as follows:

f7PanelMenu(
  id = "menu",
  f7PanelItem(
    tabName = "tab1", 
    title = "Tab 1", 
    icon = f7Icon("email"), 
    active = TRUE
  ),
  f7PanelItem(
    tabName = "tab2", 
    title = "Tab 2", 
    icon = f7Icon("home")
  )
)

The id argument is important if you want to get the currently selected item or update the select tab. Each f7PanelItem has a mandatory tabName. The associated input will be input$menu in that example, with "tab1" for value since the first tab was set to an active state. To adequately link the body and the sidebar, you must wrap the body content in f7Items() containing as many f7Item() as sidebar items. The tabName must correspond!

Core Layout Components

Page

It is the main skeleton of the template.

f7Page(
  ..., 
  options = list(
    theme = c("ios", "md", "auto", "aurora"),
    dark = TRUE,
    filled = FALSE,
    color = "#007aff",
    touch = list(
      tapHold = TRUE,
      tapHoldDelay = 750,
      iosTouchRipple = FALSE
    ),
    iosTranslucentBars = FALSE,
    navbar = list(
      iosCenterTitle = TRUE,
      hideNavOnPageScroll = TRUE
    ),
    toolbar = list(
      hideNavOnPageScroll = FALSE
    ),
    pullToRefresh = FALSE
  ),
  title = NULL, 
  preloader = FALSE, 
  loading_duration = 3,
  allowPWA = FALSE
)

options sets up the app look and feel. preloader is useful in case you want to display a loading screen. f7Page() accepts any {shinyMobile} layout.

Navbar

The navbar is a mandatory element of any {shinyMobile} layout. It contains a title, a subtitle, triggers for both right and left panels (f7Panel()) as well as a subnavbar (f7SubNavbar()).

f7Navbar(
  ..., 
  subNavbar = NULL, 
  title = NULL, 
  subtitle = NULL,
  hairline = TRUE, 
  shadow = TRUE, 
  bigger = FALSE,
  leftPanel = FALSE, 
  rightPanel = FALSE
)

For complex apps, it might be interesting to add a f7SubNavbar(...). It may contain any element like f7Button() or text. f7Navbar() has also styling parameters such as shadow and hairline.

The Toolbar

This is an option if you decide not to embed a f7SubNavbar(). The toolbar is the rigth place to add f7Button(), f7Link(), f7Badge()... Its position is controlled with the position parameter (either top or bottom).

f7Toolbar(
  ..., 
  position = c("top", "bottom"), 
  hairline = TRUE,
  shadow = TRUE, 
  icons = FALSE, 
  scrollable = FALSE
)

Under the hood, f7Tabs() is a custom f7Toolbar()!

Panels

Panels are also called sidebars. f7Panel() is the corresponding function.

f7Panel(
  ..., 
  id = NULL,
  title = NULL, 
  side = c("left", "right"),
  theme = c("dark", "light"), 
  effect = c("reveal", "cover"),
  resizable = FALSE
)

Although the App has a theme option, f7Panel() has an independent theme option. For instance, it is definitely possible to create a dark f7Panel() while the page theme is light, and conversely. Its behaviour is controlled via the effect argument:

The resizable argument allows to dynamically resize the panel.

Note that for the moment, there is no option to control the width of each panel.

As stated previously for the f7SplitLayout(), the f7Panel() may also be considered as a sidebar. In that case, we may include f7PanelMenu(). Finally do not forget to set up the f7Navbar() so that panels are allowed!

The appbar

f7Appbar() is displayed on top of the f7Navbar(). It is a best choice to embed f7Searchbar(). f7Appbar() may also trigger f7Panel().

f7Appbar(
  ..., 
  leftPanel = FALSE, 
  rightPanel = FALSE,
  maximizable = FALSE
)

Options

This is probably the most important element of the template:

options = list(
    theme = c("ios", "md", "auto", "aurora"),
    dark = TRUE,
    filled = FALSE,
    color = "#007aff",
    touch = list(
      tapHold = TRUE,
      tapHoldDelay = 750,
      iosTouchRipple = FALSE
    ),
    iosTranslucentBars = FALSE,
    navbar = list(
      iosCenterTitle = TRUE,
      hideNavOnPageScroll = TRUE
    ),
    toolbar = list(
      hideNavOnPageScroll = FALSE
    ),
    pullToRefresh = FALSE
  )

As stated above, you may choose between 3 skins and 2 color themes. There is a third option called filled that allows to fill the navbar and toolbar if enabled. The color options simply changes the color of elements such as buttons, panel triggers, tabs triggers, ... {shinyMobile} brings a lot of different colors. hideOnPageScroll allow to hide/show the navbar and toolbar which is useful to focus on the content. The tapHold parameter ensure that the "long-press" feature is activated. Framework7 has many more options which can be passed through this options parameter



Try the shinyMobile package in your browser

Any scripts or data that you put into this service are public.

shinyMobile documentation built on Nov. 25, 2022, 5:05 p.m.