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