Well, I wasn't exactly asking for all of your code.
The forum's and the help that I, and most of the people, can offer is only for specific questions. But as I said to you before, I think that you need to read again the tutorial, and maybe try to do simple modifications to it (add more colors, change the score, etc.), so you can understand it better.
There are many things that you need to understand better. For example:
You can only have one root element in a QML file, here you have two, a timer and a rectangle.
You need to read about positioning elements in the screen. (Absolute Positioning, with x and y coordinates, "Positioning elements":http://doc.qt.nokia.com/4.7/qml-positioners.html and "anchors":http://doc.qt.nokia.com/4.7/qml-anchor-layout.html)
Not everything needs to be inside a rectangle.
You need to specify more properties to the timer in order to make it work (interval, running, repeat)
When you have read more about it,I'll be happy to help you with some specific doubt or problem.