FluentUI/example/global/ItemsFooter.qml

22 lines
397 B
QML
Raw Normal View History

2023-03-30 17:16:57 +08:00
pragma Singleton
import QtQuick 2.15
import FluentUI 1.0
FluObject{
id:footer_items
FluPaneItemSeparator{}
FluPaneItem{
title:"意见反馈"
onTap:{
Qt.openUrlExternally("https://github.com/zhuzichu520/FluentUI/issues/new")
}
}
FluPaneItem{
title:"关于"
onTap:{
FluApp.navigate("/about")
}
}
}