EVOLUTION-MANAGER
Edit File: render_material_from_server.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Render reactive UI shinymaterial elements</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for render_material_from_server {shinymaterial}"><tr><td>render_material_from_server {shinymaterial}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Render reactive UI shinymaterial elements</h2> <h3>Description</h3> <p>This function is used within a shiny::renderUI(). The corresponding output is referenced using shiny::uiOutput(). </p> <h3>Usage</h3> <pre> render_material_from_server(material_ui) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>material_ui</code></td> <td> <p>shinymaterial UI element(s)</p> </td></tr> </table> <h3>Examples</h3> <pre> ## Only run examples in interactive R sessions if (interactive()) { ui <- material_page( uiOutput("renderedButton") ) server <- function(input, output) { output$renderedButton <- renderUI({ render_material_from_server(material_button("example_button", "Button")) }) } shinyApp(ui, server) } </pre> <hr /><div style="text-align: center;">[Package <em>shinymaterial</em> version 1.2.0 <a href="00Index.html">Index</a>]</div> </body></html>