Function freya::components::SnackBar  
source · pub fn SnackBar(_: SnackBarProps) -> Result<VNode, RenderError>Expand description
SnackBar component. Use in combination with other components.
§Styling
Inherits the SnackBarTheme theme.
§Example
fn app() -> Element {
    let mut open = use_signal(|| false);
    rsx!(
        rect {
            height: "100%",
            width: "100%",
            Button {
                onpress: move |_| open.toggle(),
                label { "Open" }
            }
            SnackBar {
                open,
                label {
                    "Hello, World!"
                }
            }
        }
    )
}§Preview
§Props
For details, see the props struct definition.
- children:- Element- Inner children of the SnackBar. 
- open:- ReadOnlySignal<bool>- Open or not the SnackBar. You can pass a ReadOnlySignal as well. 
- theme:- Option<SnackBarThemeWith>- Theme override.