FluentUI/Gallery/res/qml/page/T_About.qml
yxdy a44db97aa3
Some checks failed
Gallery App Build / Windows (push) Has been cancelled
Gallery App Build / macOS (push) Has been cancelled
Gallery App Build / Ubuntu (push) Has been cancelled
init
2025-02-12 10:31:20 +08:00

36 lines
892 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import FluentUI.Controls
import Gallery
ScrollablePage {
title: qsTr("About")
Frame{
Layout.preferredWidth: 260
Layout.preferredHeight: 200
ColumnLayout{
anchors.centerIn: parent
Image{
source: "qrc:/qt/qml/Gallery/res/image/logo.png"
Layout.preferredWidth: 64
Layout.preferredHeight: 64
Layout.alignment: Qt.AlignHCenter
}
Label{
text: qsTr("Current version V")+AppInfo.version + "AAAAA"
Layout.alignment: Qt.AlignHCenter
}
}
}
HotLoader{
Layout.preferredWidth: 600
Layout.preferredHeight: 400
source: "file:///D:/project/frontend/qt/Pro/FluentUI-Pro/Gallery/res/qml/page/T_Checkbox.qml"
}
}