blob: b32f7a1236c67f2ac83fefe5521291894b103646 [file] [log] [blame]
import QtQuick 2.0
Rectangle {
width: 240
height: 320
color: "#ffffff"
ListView {
id: list
anchors.fill: parent
objectName: "list"
delegate: Text {}
header: Text {
objectName: "header"
text: "ninjas"
height: headerHeight
width: headerWidth
}
}
}