Skip to content

AppBar

import { AppBar } from "@material";
export component Example inherits Window {
width: 400px;
height: 200px;
background: transparent;
AppBar {
title: "My App";
width: parent.width;
height: parent.height;
}
}
slint

An AppBar is a top-level navigation component that displays the app title and optional action buttons. It provides a consistent way to present the app’s primary navigation and actions.

booldefault: false

Whether to show show the background color of the app bar or be transparent.

struct IconButtonItemdefault: a struct with all default values

An icon button item displayed at the start of the app bar, typically used for navigation.

stringdefault: ""

The title text displayed in the app bar.

struct IconButtonItemdefault: a struct with all default values

An icon button item displayed at the end of the app bar, typically used for actions.

Invoked when the leading icon is clicked.

Invoked when the trailing icon is clicked.


© 2026 SixtyFPS GmbH