Skip to content

SnackBar

import { FilledButton, SnackBar } from "@material";
export component Example inherits Window {
width: 400px;
height: 200px;
background: transparent;
show-snack-bar := FilledButton {
text: @tr("Show Snack Bar");
clicked => {
sb.show();
}
}
sb := 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.

string default: ""

The label for the action button.

bool default: false

Whether to show a close button on the snackbar.

string default: ""

The message text displayed in the snackbar.

Invoked when the action button is clicked.


© 2025 SixtyFPS GmbH