diff options
Diffstat (limited to 'gui/qml/MainBar.qml')
-rw-r--r-- | gui/qml/MainBar.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gui/qml/MainBar.qml b/gui/qml/MainBar.qml new file mode 100644 index 0000000..1f28bac --- /dev/null +++ b/gui/qml/MainBar.qml @@ -0,0 +1,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") + } +} |