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