From 1d05bfd0c1f74b7c6049acd143b32f8ce6b4bdce Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Mon, 27 Feb 2023 13:00:48 +0700 Subject: add ListInlineItem --- ListInlineItem.ui.qml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 ListInlineItem.ui.qml (limited to 'ListInlineItem.ui.qml') diff --git a/ListInlineItem.ui.qml b/ListInlineItem.ui.qml new file mode 100644 index 0000000..0521d37 --- /dev/null +++ b/ListInlineItem.ui.qml @@ -0,0 +1,40 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 + +RowLayout { + id:listInline + width: listInlineItem.width + height: listInlineItem.height + RowLayout { + id:listInlineItem + Rectangle { + radius: 100 + color: "#4dfd7e14" + Layout.preferredHeight: 42 + Layout.preferredWidth: 42 + Layout.minimumHeight: 42 + Layout.minimumWidth: 42 + + Image { + id: image + anchors.verticalCenter: parent.verticalCenter + source: "qrc:/qtquickplugin/images/template_image.png" + anchors.horizontalCenter: parent.horizontalCenter + fillMode: Image.PreserveAspectFit + Layout.preferredHeight: 12 + Layout.preferredWidth: 12 + Layout.minimumHeight: 12 + Layout.minimumWidth: 12 + } + } + Label { + id: instructorTitle + color: "#000000" + text: qsTr("List inline item metrics") + font.styleName: "Regular" + font.pointSize: 14 + font.family: "roboto" + } + } +} \ No newline at end of file -- cgit v1.2.3