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