8 lines
183 B
QML
8 lines
183 B
QML
|
import QtQuick 2.3
|
||
|
|
||
|
QtObject {
|
||
|
property bool visible: true
|
||
|
property string message: "This is an example message.\nUsing multiple lines"
|
||
|
property string iconName: "kwin"
|
||
|
}
|