21 lines
381 B
QML
21 lines
381 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
import Utils 1.0
|
|
|
|
TabBar {
|
|
id: control
|
|
|
|
background: Rectangle {
|
|
color: Palette.backgroundColor
|
|
|
|
Rectangle {
|
|
height: 1
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
color: Palette.borderColor
|
|
}
|
|
}
|
|
}
|