This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-22 18:40:17 +02:00

39 lines
632 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
Page {
id: root
footer: TabBar {
TabButton {
text: "Things"
onClicked: mainSwipeView.currentIndex = 0
}
TabButton {
text: "Magic"
onClicked: mainSwipeView.currentIndex = 1
}
TabButton {
text: "Settings"
onClicked: mainSwipeView.currentIndex = 2
}
}
SwipeView {
id: mainSwipeView
anchors.fill: parent
interactive: false
DevicesPage {
}
Item {
}
SettingsPage {
}
}
}