Skip to contents

Build a Framework7 flex container

Usage

f7Flex(...)

Arguments

...

Items.

Author

David Granjon, dgranjon@ymail.com

Examples

if(interactive()){
 library(shiny)
 library(shinyMobile)

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