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.
© 2025 SixtyFPS GmbH