forked from AgoraIO/Agora-with-QT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSplashForm.ui.qml
executable file
·59 lines (52 loc) · 1.24 KB
/
SplashForm.ui.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
54
55
56
57
58
import QtQuick 2.5
import "./controls"
Rectangle {
id: splash
property alias mouseArea: mouseArea
width: 600
height: 600
MouseArea {
id: mouseArea
anchors.fill: parent
}
ATitleBar {
width: parent.width
height: 24
anchors.top: parent.top
anchors.topMargin: 0
}
Image {
id: image1
x: 236
width: 130
height: 72
anchors.top: parent.top
anchors.topMargin: 204
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
sourceSize.height: 72
sourceSize.width: 130
source: "images/icon_logo.png"
}
Text {
id: text1
x: 288
color: "#9196a0"
text: qsTr("Agora Video Call")
anchors.top: image1.bottom
anchors.topMargin: 16
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 16
}
Text {
id: text2
x: 289
color: "#009deb"
text: qsTr("Powering Real-Time Communications")
font.bold: true
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: text1.bottom
anchors.topMargin: 12
font.pixelSize: 16
}
}