SnackBar
import { SnackBar } from "material.slint";export component Example inherits Window { width: 400px; height: 200px; background: transparent; SnackBar { text: "Message sent"; action_text: "Undo"; has_close_button: true; }}
slint
A SnackBar
provides brief messages about app processes at the bottom of the screen. It can include an action and a close button.
Properties
Section titled “Properties”action_text
Section titled “action_text”string default: ""
The label for the action button.
has_close_button
Section titled “has_close_button”bool default: false
Whether to show a close button on the snackbar.
string default: ""
The message text displayed in the snackbar.
Callbacks
Section titled “Callbacks”action()
Section titled “action()”Invoked when the action button is clicked.
SnackBar { action() => { debug("SnackBar action clicked"); }}
slint
© 2025 SixtyFPS GmbH