lux-shell/modules/storybook/Navigation.qml
2026-01-15 13:52:47 -05:00

26 lines
496 B
QML

import qs.components
import qs.components.TabView
import qs.config
import QtQuick
import QtQuick.Controls
Item {
anchors.fill: parent
StyledTabView {
StyledTab {
title: 'Red Tab'
Rectangle {
color: 'red'
anchors.fill: parent
}
}
StyledTab {
title: 'Blue Tab'
Rectangle {
color: 'blue'
anchors.fill: parent
}
}
}
}