Learn R Programming

shinyMobile (version 0.7.0)

f7Flex: Create a Framework7 flex container

Description

Build a Framework7 flex container

Usage

f7Flex(...)

Arguments

...

Items.

Examples

Run this code
# NOT RUN {
if(interactive()){
 library(shiny)
 library(shinyMobile)

 shiny::shinyApp(
   ui = f7Page(
    title = "Align",
    f7SingleLayout(
     navbar = f7Navbar(title = "f7Flex"),
     f7Flex(
     f7Block(strong = TRUE),
     f7Block(strong = TRUE),
     f7Block(strong = TRUE)
    )
    )
   ),
   server = function(input, output) {}
 )
}

# }

Run the code above in your browser using DataLab