chore: configure pyside6-project

This commit is contained in:
2025-10-24 22:58:25 +08:00
parent d90a165df8
commit 42b3447b43
6 changed files with 45 additions and 12 deletions

22
ui/qmls/404.qml Normal file
View File

@ -0,0 +1,22 @@
import QtQuick
import QtQuick.Controls
Page {
Column {
anchors.centerIn: parent
width: parent.width
Label {
width: parent.width
text: '?'
font.pointSize: 50
horizontalAlignment: Qt.AlignCenter
}
Label {
width: parent.width
text: 'Placeholder page'
horizontalAlignment: Qt.AlignCenter
}
}
}