forked from qt-creator/qt-creator
9 lines
176 B
QML
9 lines
176 B
QML
|
|
Item {
|
||
|
|
//! [properties and signal definitions]
|
||
|
|
property string text: ""
|
||
|
|
property int fontSize: 44
|
||
|
|
|
||
|
|
signal clicked
|
||
|
|
//! [properties and signal definitions]
|
||
|
|
}
|