[Linux] Add settings page (empty)

This commit is contained in:
Tim Gromeyer
2025-04-18 22:11:15 +02:00
committed by Tim Gromeyer
parent eacd862ef3
commit 3aeff4d986
4 changed files with 177 additions and 90 deletions

13
linux/Icon.qml Normal file
View File

@@ -0,0 +1,13 @@
// Icon.qml
import QtQuick 2.15
Text {
property string icon: ""
font.family: iconFont.name
text: icon
FontLoader {
id: iconFont
source: "qrc:/icons/assets/fonts/SF-Symbols-6.ttf"
}
}