blob: dc3f7f34ac5306b95a462a8d2e28a3ed521fe253 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001// Default empty project template
2import bb.cascades 1.0
3
4// creates one page with a label
5Page {
6 Container {
7 layout: StackLayout {
8 }
9 background: Color.Black
10 Label {
11 text: qsTr("")
12 horizontalAlignment: HorizontalAlignment.Center
13 }
14 ImageView {
15 imageSource: "asset:///images/teluu-logo.png"
16 topMargin: 200
17 preferredWidth: 500
18 preferredHeight: 500
19 verticalAlignment: VerticalAlignment.Center
20 horizontalAlignment: HorizontalAlignment.Center
21 }
22 Label {
23 text: qsTr("pjsua BB10")
24 textStyle.base: SystemDefaults.TextStyles.BigText
25 horizontalAlignment: HorizontalAlignment.Center
26 textStyle {
27 color: Color.White
28 }
29 }
30 Label {
31 objectName: "telnetMsg"
32 text: qsTr("Starting..")
33 topMargin: 200
34 horizontalAlignment: HorizontalAlignment.Center
35 textStyle {
36 color: Color.White
37 }
38 }
39 }
40}
41