@Iktwo Yes I want to see them all, but one by one..
I have this:
height: 200
width: parent.width
color: "blue"
anchors.top: parent.top
border.color: "black"
border.width: 1
radius: 5
clip: true
PathView {
anchors.fill: parent
model: latContent
pathItemCount: 3
//currentIndex : 2
delegate: Component {
Text {
font.pointSize: 14
text: modelData
}
}
path: Path {
startX: 120; startY: 100
PathQuad { x: 120; y: 25; controlX: 260; controlY: 75 }
PathQuad { x: 120; y: 100; controlX: -20; controlY: 75 }
}
}
}
latContent is my list from Bluetoothsocket, so basically my list could be 'infinite'.