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

31 lines
615 B
QML
Raw Normal View History

2016-10-21 19:24:29 +00:00
import bb.cascades 1.4
Container {
topPadding: ui.du(3)
leftPadding: ui.du(3)
Container {
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
Label {
text: "Unread global:"
}
Label {
objectName: "global_label"
text: "0"
}
}
Container {
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
Label {
text: "Unread home:"
}
Label {
objectName: "home_label"
text: "0"
}
}
}