Field.qml Example File
bbmcontacts/assets/Field.qml
import bb.cascades 1.0
Container {
property alias title: titleField.text
property alias value: valueField.text
topMargin: 10
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
Label {
id: titleField
layoutProperties: StackLayoutProperties {
spaceQuota: 1
}
textStyle {
base: SystemDefaults.TextStyles.BodyText
color: Color.White
fontStyle: FontStyle.Italic
}
opacity: 0.7
}
Label {
id: valueField
layoutProperties: StackLayoutProperties {
spaceQuota: 1
}
textStyle {
base: SystemDefaults.TextStyles.BodyText
color: Color.White
}
multiline: true
}
}