LabelLabel.qml Example File
bluetoothsppchat/assets/LabelLabel.qml
import bb.cascades 1.0
Container {
id: container
property alias label: labelPart.text
property alias text: textPart.text
property alias textStyle: textPart.textStyle
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
Label {
id: labelPart
text: ""
textStyle {
base: SystemDefaults.TextStyles.SubtitleText
fontWeight: FontWeight.Bold
color: Color.DarkGray
}
}
Label {
id: textPart
text: ""
textStyle {
base: SystemDefaults.TextStyles.SubtitleText
color: Color.Gray
}
}
}