Creates a Material UI page without Bootstrap and with 0 margin in body by default. You can choose to use Google Roboto font as well as Google icons fonts with the `Icon()` component.
Usage
muiMaterialPage(
...,
useFontRoboto = FALSE,
useMaterialIconsFilled = FALSE,
useMaterialIconsOutlined = FALSE,
useMaterialIconsRounded = FALSE,
useMaterialIconsTwoTones = FALSE,
suppressBootstrap = TRUE,
styleBody = "margin:0",
debugReact = FALSE
)Arguments
- ...
The contents of the document body.
- useFontRoboto
Use Google Roboto font CDN in head, FALSE by default.
- useMaterialIconsFilled
Use Google icons CDN in head to use `Icon()` component, FALSE by default.
- useMaterialIconsOutlined
Use Google icons CDN in head to use `Icon()` component, FALSE by default.
- useMaterialIconsRounded
Use Google icons CDN in head to use `Icon()` component, FALSE by default.
- useMaterialIconsTwoTones
Use Google icons CDN in head to use `Icon()` component, FALSE by default.
- suppressBootstrap
Whether to suppress Bootstrap.
- styleBody
CSS style in body, using `margin:0` by default.
- debugReact
Whether to enable react debug mode. Default to FALSE.
