Implemented QML skeleton for the application

This commit is contained in:
Yury Shuvakin
2022-08-15 08:49:12 +03:00
parent 14a7aa699f
commit dce22c65d6
36 changed files with 791 additions and 117 deletions

13
qml/Controls/Frame.qml Normal file
View File

@@ -0,0 +1,13 @@
import QtQuick 2.12
import QtQuick.Controls 2.12
import Utils 1.0
Frame {
background: Rectangle {
color: Palette.backgroundColor
border.color: Palette.borderColor
border.width: 1
radius: 8
}
}