Anyone have any example of how to style a qt quick controls application similar to this:
http://blog.qt.digia.com/wp-content/uploads/2013/06/Screen-Shot-2013-06-21-at-2.51.45-PM3.png
http://blog.qt.digia.com/blog/2013/06/21/overview-of-the-new-features-in-qt-quick/
I’ve tried to change the background of the toolbar by doing this:
toolBar: ToolBar {
Rectangle
{
width: parent.width
height: 40
color: “red”
}
}
It works but there must be some better way of doing it right?
The margins also gets wrong and has to be adjusted.
/Zeiko
↧