Build a Framework7 button
f7Button( inputId = NULL, label = NULL, href = NULL, color = NULL, fill = TRUE, outline = FALSE, shadow = FALSE, rounded = FALSE, size = NULL, active = FALSE )
| inputId | The input slot that will be used to access the value. |
|---|---|
| label | The contents of the button or link–usually a text label, but you could also use any other HTML, like an image or f7Icon. |
| href | Button link. |
| color | Button color. Not compatible with outline. See here for valid colors https://framework7.io/docs/badge.html. |
| fill | Fill style. TRUE by default. Not compatible with outline |
| outline | Outline style. FALSE by default. Not compatible with fill. |
| shadow | Button shadow. FALSE by default. Only for material design. |
| rounded | Round style. FALSE by default. |
| size | Button size. NULL by default but also "large" or "small". |
| active | Button active state. Default to FALSE. This is useful when used in f7Segment with the strong parameter set to TRUE. |
David Granjon, dgranjon@ymail.com