Add saveFileAs() && init setting page.

This commit is contained in:
Black Hat
2018-07-19 21:02:06 +08:00
parent febff558fd
commit 80fca26092
5 changed files with 55 additions and 6 deletions

View File

@@ -1,5 +1,39 @@
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
Item {
Page {
SwipeView {
id: settingView
currentIndex: 1
anchors.fill: parent
Item {
id: accountPage
}
Item {
id: secondPage
}
Item {
id: thirdPage
}
}
header: TabBar {
id: tabBar
width: parent.width
currentIndex: settingView.currentIndex
TabButton {
text: qsTr("Account")
}
TabButton {
text: qsTr("Call History")
}
TabButton {
text: qsTr("Dail Pad")
}
}
}