2022-05-31 21:26:41 +00:00
|
|
|
import QtQml
|
2022-07-15 07:30:16 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2022-05-31 21:26:41 +00:00
|
|
|
|
2022-07-15 07:30:16 +00:00
|
|
|
import Status.Application.Navigation
|
2022-05-31 21:26:41 +00:00
|
|
|
import Status.Controls.Navigation
|
2022-07-15 07:30:16 +00:00
|
|
|
import Status.Wallet
|
2022-05-31 21:26:41 +00:00
|
|
|
|
2022-07-15 07:30:16 +00:00
|
|
|
Item {
|
|
|
|
property var sections: [walletSection, settingsSection]
|
2022-05-31 21:26:41 +00:00
|
|
|
|
2022-07-15 07:30:16 +00:00
|
|
|
ButtonGroup {
|
|
|
|
id: oneSectionSelectedGroup
|
2022-05-31 21:26:41 +00:00
|
|
|
}
|
|
|
|
|
2022-07-15 07:30:16 +00:00
|
|
|
ApplicationSection {
|
|
|
|
id: walletSection
|
|
|
|
navigationSection: SimpleNavBarSection {
|
|
|
|
name: "Wallet"
|
|
|
|
mutuallyExclusiveGroup: oneSectionSelectedGroup
|
|
|
|
}
|
|
|
|
content: WalletView {}
|
|
|
|
}
|
|
|
|
ApplicationSection {
|
|
|
|
id: settingsSection
|
|
|
|
navigationSection: SimpleNavBarSection {
|
|
|
|
name: "Settings"
|
|
|
|
mutuallyExclusiveGroup: oneSectionSelectedGroup
|
2022-05-31 21:26:41 +00:00
|
|
|
}
|
2022-07-15 07:30:16 +00:00
|
|
|
content: ApplicationContentView {
|
|
|
|
Label {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: "TODO Settings"
|
|
|
|
}
|
2022-05-31 21:26:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|