lux-shell/components/StyledTabBar.qml
2025-09-17 11:57:21 -04:00

19 lines
394 B
QML

import QtQuick
import QtQuick.Controls
TabBar {
id: control
property alias orientation: view.orientation
contentItem: ListView {
id: view
model: control.contentModel
currentIndex: control.currentIndex
spacing: control.spacing
orientation: ListView.Horizontal
boundsBehavior: Flickable.StopAtBounds
}
background: Item {}
}