Add two sample apps just to have some Qt based applications that can be launched.
[staging/HomeScreen.git] / SampleMediaApp / qml / SampleMediaApp / main.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 400
5     height: 300
6
7
8     Rectangle {
9         width: parent.width / 2
10         height: parent.height
11         color: "yellow"
12
13         Text {
14             text: qsTr("SampleMediaApp")
15             anchors.centerIn: parent
16         }
17     }
18
19     Rectangle {
20         width: parent.width / 2
21         height: parent.height
22         x: parent.width / 2
23         color: "yellow"
24
25         Text {
26             text: qsTr("default size: 400x300px")
27             anchors.centerIn: parent
28         }
29     }
30 }