This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
goober-bb10/assets/AppCover.qml
Morgan McMillian 3f28d7eb89 changed app cover to reflect a single unread for the active tab, added
title bar, and started settings page
2016-10-22 07:11:28 -07:00

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
// }
// }
}