Skip to content

Instantly share code, notes, and snippets.

@hakimrie
Created November 1, 2012 12:13
Show Gist options
  • Save hakimrie/3993300 to your computer and use it in GitHub Desktop.
Save hakimrie/3993300 to your computer and use it in GitHub Desktop.
import bb.cascades 1.0
Page {
Container {
layout: DockLayout {
}
ListView {
layout: StackListLayout {
orientation: LayoutOrientation.LeftToRight
}
dataModel: XmlDataModel {
source: "data.xml"
}
listItemComponents: [
ListItemComponent {
type: "header"
Label {
text : ListItemData.name
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment