-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActiveFrame.qml
40 lines (38 loc) · 1.23 KB
/
ActiveFrame.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
import bb.cascades 1.0
Container {
Container {
layout: DockLayout {}
background: Color.create("#2A2A2A")
Container {
topPadding: 30
bottomPadding: 30
rightPadding: 50
leftPadding: 50
ImageView {
imageSource: "asset:///img/arkick.png"
scalingMethod: ScalingMethod.AspectFit
}
}
Container {
bottomPadding: 0
horizontalAlignment: HorizontalAlignment.Center
verticalAlignment: VerticalAlignment.Bottom
/*
Container {
preferredWidth: 300
preferredHeight: 42
background: Color.create("#121212")
layout: DockLayout {}
Label {
objectName: "TheLabel"
horizontalAlignment: HorizontalAlignment.Center
verticalAlignment: VerticalAlignment.Center
text: "Sidekick Engine Online"
textStyle.color: Color.create("#ebebeb")
textStyle.fontSize: FontSize.PointValue
textStyle.fontSizeValue: 6
}
} */
}
}
}