2023-05-22 16:17:51 +08:00
|
|
|
pragma Singleton
|
2023-03-30 17:16:57 +08:00
|
|
|
|
2023-08-24 15:50:37 +08:00
|
|
|
import QtQuick 2.15
|
|
|
|
import FluentUI 1.0
|
2023-03-30 17:16:57 +08:00
|
|
|
|
|
|
|
FluObject{
|
2023-04-10 18:17:22 +08:00
|
|
|
|
|
|
|
property var navigationView
|
2023-10-19 22:52:36 +08:00
|
|
|
property var paneItemMenu
|
2023-04-10 18:17:22 +08:00
|
|
|
|
2023-05-09 19:58:41 +08:00
|
|
|
id:footer_items
|
|
|
|
|
2023-03-30 17:16:57 +08:00
|
|
|
FluPaneItemSeparator{}
|
2023-05-09 19:58:41 +08:00
|
|
|
|
2023-03-30 17:16:57 +08:00
|
|
|
FluPaneItem{
|
2023-10-10 15:06:44 +08:00
|
|
|
title:Lang.about
|
2023-04-10 18:17:22 +08:00
|
|
|
icon:FluentIcons.Contact
|
2023-08-26 17:20:30 +08:00
|
|
|
onTapListener:function(){
|
2023-04-10 18:17:22 +08:00
|
|
|
FluApp.navigate("/about")
|
2023-03-30 17:16:57 +08:00
|
|
|
}
|
|
|
|
}
|
2023-05-09 19:58:41 +08:00
|
|
|
|
2023-03-30 17:16:57 +08:00
|
|
|
FluPaneItem{
|
2023-10-10 15:06:44 +08:00
|
|
|
title:Lang.settings
|
2023-10-19 22:52:36 +08:00
|
|
|
menuDelegate: paneItemMenu
|
2023-04-10 18:17:22 +08:00
|
|
|
icon:FluentIcons.Settings
|
2023-08-26 17:20:30 +08:00
|
|
|
url:"qrc:/example/qml/page/T_Settings.qml"
|
2023-03-30 17:16:57 +08:00
|
|
|
onTap:{
|
2023-08-26 17:20:30 +08:00
|
|
|
navigationView.push(url)
|
2023-03-30 17:16:57 +08:00
|
|
|
}
|
|
|
|
}
|
2023-05-09 19:58:41 +08:00
|
|
|
|
2023-03-30 17:16:57 +08:00
|
|
|
}
|