diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-26 18:18:45 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-26 18:18:45 +0800 |
commit | 2adc8ee9afa3f41c36be24a00fbee1747938307e (patch) | |
tree | 323f4c85107979d44621f434bd1c88e8664c2ee6 /Card.ui.qml | |
parent | 81a28f53981a05bfd04f01aa4e1725c6e567d04c (diff) |
Add card footer
Diffstat (limited to 'Card.ui.qml')
-rw-r--r-- | Card.ui.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Card.ui.qml b/Card.ui.qml index f5ddb90..fcaf9d3 100644 --- a/Card.ui.qml +++ b/Card.ui.qml @@ -35,7 +35,7 @@ Item { width: parent.width anchors { top: image.bottom - bottom: parent.bottom + bottom: footer.top } Item { @@ -112,6 +112,13 @@ Item { } } } + + Item { + id: footer + width: parent.width + height: image.sourceSize.height / 4 + anchors.bottom: parent.bottom + } } DropShadow { |