Skip to content
This is the unreleased documentation for the next version of Slint.
For up-to-date documentation, see here.

TabWidget

import { TabWidget } from "std-widgets.slint";
export component Example inherits Window {
width: 200px;
height: 200px;
TabWidget {
Tab {
title: "First";
Rectangle { background: orange; }
}
Tab {
title: "Second";
Rectangle { background: pink; }
}
}
}
slint
std-widgets tabwidget example

TabWidget is a container for a set of tabs. It can only have Tab elements as children and only one tab will be visible at a time.

Properties

current-index

int default: 0

The index of the currently visible tab.

TabWidget {
current-index: 1;
Tab {
title: "First";
}
Tab {
title: "Second";
}
}
slint

Properties of the Tab element

title

string default: ""

The text written on the tab.

TabWidget {
Tab {
title: "First";
}
}
slint

Copyright © SixtyFPS GmbH