lux-shell/components/StyledTabBar.qml
2025-09-15 22:04:46 -04:00

19 lines
400 B
QML

import QtQuick
import QtQuick.Controls.Basic
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 {}
}