Function freya_components::SnackBar
source · pub fn SnackBar(__props: SnackBarProps) -> Element
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!"
}
}
}
)
}
§Props
For details, see the props struct definition.