41 lines
584 B
QML
41 lines
584 B
QML
|
import QtQuick 2.10
|
||
|
import QtQuick.Controls 2.3
|
||
|
|
||
|
Page {
|
||
|
TabBar {
|
||
|
id: settingBar
|
||
|
width: parent.width
|
||
|
z: 10
|
||
|
currentIndex: settingBar.currentIndex
|
||
|
|
||
|
TabButton {
|
||
|
text: qsTr("Overview")
|
||
|
}
|
||
|
TabButton {
|
||
|
text: qsTr("Network")
|
||
|
}
|
||
|
TabButton {
|
||
|
text: qsTr("Sync")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
SwipeView {
|
||
|
id: settingSwipe
|
||
|
|
||
|
currentIndex: settingBar.currentIndex
|
||
|
anchors.fill: parent
|
||
|
|
||
|
Page {
|
||
|
|
||
|
}
|
||
|
|
||
|
Page {
|
||
|
|
||
|
}
|
||
|
|
||
|
Page {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|