From cb85f10758e78a92669fcd90c619ca17ac26cd41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E5=AD=90=E6=A5=9A=5Czhuzi?= Date: Tue, 9 May 2023 19:58:41 +0800 Subject: [PATCH] update --- example/qml/global/ItemsFooter.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/example/qml/global/ItemsFooter.qml b/example/qml/global/ItemsFooter.qml index 5f7991a..a5b48ef 100644 --- a/example/qml/global/ItemsFooter.qml +++ b/example/qml/global/ItemsFooter.qml @@ -4,11 +4,13 @@ import QtQuick import FluentUI FluObject{ - id:footer_items property var navigationView + id:footer_items + FluPaneItemSeparator{} + FluPaneItem{ title:lang.about icon:FluentIcons.Contact @@ -16,6 +18,7 @@ FluObject{ FluApp.navigate("/about") } } + FluPaneItem{ title:lang.settings icon:FluentIcons.Settings @@ -23,4 +26,5 @@ FluObject{ navigationView.push("qrc:/example/qml/page/T_Settings.qml") } } + }