lux-shell/components/StyledTabBar.qml
2025-09-11 23:56:56 -04:00

20 lines
428 B
QML

import qs.config
import QtQuick
import QtQuick.Controls.Basic
TabBar {
id: control
property alias orientation: view.orientation
contentItem: ListView {
id: view
model: control.contentModel
currentIndex: control.currentIndex
orientation: ListView.Horizontal
boundsBehavior: Flickable.StopAtBounds
}
background: Rectangle {
color: Styling.theme.base200
}
}