lux-shell/components/StyledTabBar.qml
2025-09-16 08:48:23 -04:00

25 lines
588 B
QML

import QtQuick
import QtQuick.Controls
TabBar {
id: control
property alias orientation: view.orientation
spacing: 12
contentItem: Item {
ListView {
id: view
anchors.centerIn: parent
implicitWidth: parent.width - 20
implicitHeight: parent.height - 20
model: control.contentModel
currentIndex: control.currentIndex
spacing: control.spacing
orientation: ListView.Horizontal
boundsBehavior: Flickable.StopAtBounds
}
}
background: Item {}
}