-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.qml
53 lines (43 loc) · 1.08 KB
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import QtQuick 2.15
import QtQuick.Window 2.15
//import Neumorphism 1.2
import QtQuick.Controls 2.15
import "ui"
Window {
id: mainwindow
width: 1398
height: 996
visible: true
title: qsTr("Hello World")
color: "transparent"
// flags: Qt.FramelessWindowHint | Qt.Window | Qt.WA_TranslucentBackground
FontLoader {
id: myFont
// source: "qrc:/resource/fonts/Iconic-Bold-trial.ttf"
// source: "qrc:/resource/fonts/Iconic-Heavy-trial.ttf"
// source: "qrc:/resource/fonts/Iconic-Light-trial.ttf"
// source: "qrc:/resource/fonts/Iconic-Regular-trial.ttf"
source: "qrc:/resource/fonts/Jiho-Regular.otf"
}
Rectangle {
id: background
color: "#101020"
anchors.fill: parent
radius: 30
Header{
id: header
}
LeftMenu {
id: leftMenuRectangle
}
MiddleScreen {
id: middleScreenRectangle
}
BottomMenu{
id: bottomMenuRectangle
}
}
Item {
id: __materialLibrary__
}
}