diff options
| -rw-r--r-- | Qeduport.qmlproject | 2 | ||||
| -rw-r--r-- | RecentlyViewedCard.ui.qml | 33 | 
2 files changed, 35 insertions, 0 deletions
| diff --git a/Qeduport.qmlproject b/Qeduport.qmlproject index fff4ec9..f5afbda 100644 --- a/Qeduport.qmlproject +++ b/Qeduport.qmlproject @@ -24,4 +24,6 @@ Project {  	multilanguageSupport: true  	supportedLanguages: ["en", "id"]  	primaryLanguage: "en" + +    mainFile: "RecentlyViewedCard.ui.qml"  } diff --git a/RecentlyViewedCard.ui.qml b/RecentlyViewedCard.ui.qml new file mode 100644 index 0000000..c24eee3 --- /dev/null +++ b/RecentlyViewedCard.ui.qml @@ -0,0 +1,33 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 +import QtGraphicalEffects 1.15 + +Rectangle { +	id: recentlyViewedCard +	Layout.fillWidth: true +	implicitHeight: recentlyCardContent.height +	color: "#ffffff" +	radius: 8 +	anchors.margins: 24 + +	ColumnLayout { +		id: recentlyCardContent +		anchors { +			left: parent.left +			right: parent.right +		} +		Label { +			text: qsTr("Recently viewed") +			font.pointSize: 22 +			font.family: "roboto" +			color: "#000000" +			Layout.fillWidth: true +		} +	} +	DropShadow { +		source: recentlyViewedCard +		color: Qt.rgba(.0, .0, .0, .30) +		anchors.fill: recentlyViewedCard +	} +} |