mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 05:14:48 +00:00

These were added by commit eec9d31809
but
they are compiler internal properties that are not available to users,
or just don't exist
Discussed in https://github.com/slint-ui/slint/discussions/3995
800 B
800 B
TabWidget
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
(in int): The index of the currently visible tab
Properties of the Tab
element
title
(in string): The text written on the tab
Example
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; }
}
}
}