ProfileBoxItem.qml Example File
bbmprofilebox/assets/ProfileBoxItem.qml
import bb.cascades 1.0
Container {
minHeight: 150
background: Color.create ("#272727")
Container{
topPadding: 30
leftPadding: 30
rightPadding: 30
bottomPadding: 30
layout: StackLayout {
orientation: LayoutOrientation.LeftToRight
}
ImageView {
rightMargin: 30
image: ListItemData.icon
}
Label {
layoutProperties: StackLayoutProperties {
spaceQuota: 1
}
text: ListItemData.text
textStyle.color: Color.create("#fafafa")
multiline: true
}
}
Divider {}
}