I try:
Rectangle {
id:wo
width: parent.width*0.6
}
And I’m getting the error:
TypeError: Cannot read property of null
And therefore I want something like:
if(parent.exist) return parent.width;
else return Screen.width;
How can I do this?
↧