mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
34 lines
617 B
QML
34 lines
617 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
Rectangle {
|
|
id: card
|
|
property string title: ""
|
|
property string description: ""
|
|
|
|
radius: 10
|
|
color: "#11152b"
|
|
border.color: "#1f2b45"
|
|
border.width: 1
|
|
padding: 14
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: 6
|
|
|
|
Text {
|
|
text: card.title
|
|
font.pixelSize: 16
|
|
color: "#f5f8ff"
|
|
wrapMode: Text.Wrap
|
|
}
|
|
|
|
Text {
|
|
text: card.description
|
|
font.pixelSize: 13
|
|
color: "#aeb8cf"
|
|
wrapMode: Text.Wrap
|
|
}
|
|
}
|
|
}
|