mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 00:27:32 +08:00
34 lines
584 B
QML
34 lines
584 B
QML
pragma Singleton
|
|
|
|
import QtQuick 2.15
|
|
import FluentUI 1.0
|
|
|
|
FluObject{
|
|
|
|
property var navigationView
|
|
property var paneItemMenu
|
|
|
|
id:footer_items
|
|
|
|
FluPaneItemSeparator{}
|
|
|
|
FluPaneItem{
|
|
title:Lang.about
|
|
icon:FluentIcons.Contact
|
|
onTapListener:function(){
|
|
FluApp.navigate("/about")
|
|
}
|
|
}
|
|
|
|
FluPaneItem{
|
|
title:Lang.settings
|
|
menuDelegate: paneItemMenu
|
|
icon:FluentIcons.Settings
|
|
url:"qrc:/example/qml/page/T_Settings.qml"
|
|
onTap:{
|
|
navigationView.push(url)
|
|
}
|
|
}
|
|
|
|
}
|