3f28d7eb89
title bar, and started settings page
34 lines
800 B
QML
34 lines
800 B
QML
import bb.cascades 1.4
|
|
|
|
Container {
|
|
topPadding: ui.du(3)
|
|
leftPadding: ui.du(3)
|
|
Container {
|
|
layout: StackLayout {
|
|
orientation: LayoutOrientation.LeftToRight
|
|
}
|
|
Label {
|
|
text: "Unread:"
|
|
textStyle.color: Color.Black
|
|
}
|
|
Label {
|
|
objectName: "global_label"
|
|
text: "0"
|
|
textStyle.color: Color.Black
|
|
}
|
|
}
|
|
// Container {
|
|
// layout: StackLayout {
|
|
// orientation: LayoutOrientation.LeftToRight
|
|
// }
|
|
// Label {
|
|
// text: "Unread home:"
|
|
// textStyle.color: Color.Black
|
|
// }
|
|
// Label {
|
|
// objectName: "home_label"
|
|
// text: "0"
|
|
// textStyle.color: Color.Black
|
|
// }
|
|
// }
|
|
}
|