FluentUI/example/global/ItemsFooter.qml
朱子楚\zhuzi b5894158d2 update
2023-03-30 21:52:55 +08:00

22 lines
388 B
QML

pragma Singleton
import QtQuick
import FluentUI
FluObject{
id:footer_items
FluPaneItemSeparator{}
FluPaneItem{
title:"意见反馈"
onTap:{
Qt.openUrlExternally("https://github.com/zhuzichu520/FluentUI/issues/new")
}
}
FluPaneItem{
title:"关于"
onTap:{
FluApp.navigate("/about")
}
}
}