26 lines
496 B
QML
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
|
|
}
|
|
}
|
|
}
|
|
}
|