mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-24 17:22:10 +00:00
10 lines
184 B
QML
10 lines
184 B
QML
import QtQuick
|
|
|
|
Text {
|
|
required property int id
|
|
required property string body
|
|
required property string summary
|
|
property int margin
|
|
|
|
text: `- ${summary}: ${body}`
|
|
}
|