Add saveFileAs() && init setting page.
This commit is contained in:
@@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user