blob: a05c1a1afff69d53d4f7176dc44bff9cc8f565d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import QtQuick 2.9
import QtQuick.Controls 2.4
TabBar {
width: parent.width
TabButton {
text: qsTr("Status")
}
TabButton {
text: qsTr("Location")
}
TabButton {
text: qsTr("Bridges")
}
}
|