20 lines
343 B
QML
20 lines
343 B
QML
|
|
import QtQuick
|
||
|
|
|
||
|
|
Item {
|
||
|
|
id: myItem
|
||
|
|
required property string name
|
||
|
|
required property string info
|
||
|
|
property int fontSize: 16
|
||
|
|
|
||
|
|
width: parent.width
|
||
|
|
height: 40
|
||
|
|
Column {
|
||
|
|
Text {
|
||
|
|
text: '<b>Name:</b> ' + myItem.name
|
||
|
|
}
|
||
|
|
Text {
|
||
|
|
text: '<b>Info:</b> ' + myItem.info
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|