blob: 037d53d347051afab9e5112a1bff0f3f4fccf623 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import QtQuick 2.2
import Sailfish.Silica 1.0
Dialog {
property var name
Column {
width: parent.width
DialogHeader { }
Label {
width: parent.width
text: name + qsTr(" challenges you")
}
}
}
|