Quote Originally Posted by bchinfosieeuw View Post
My ApplicationWindow {} did not have a contentItem
Ok, so you had an empty window with just the ToolBar, I though that you maybe already had some content in your window.

In QtQuick, to show something you only need to instantiate it, potentially provide values for size if it doesn't have an implicit one.

Qt Code:
  1. import QtQuick 2.0
  2.  
  3. Rectangle {
  4. width: 100
  5. height: 100
  6.  
  7. color: "blue"
  8. }
To copy to clipboard, switch view to plain text mode 

Cheers,
_