summaryrefslogtreecommitdiff
path: root/MessageOut.ui.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2023-05-15 16:58:53 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2023-05-15 16:58:53 +0700
commitf34d6f4679410eb563374748bb8bf78b615f4ade (patch)
treeb951a2c76af5b27e9182a3d1257ab1334f749e24 /MessageOut.ui.qml
parent2f61ed497023dc7e12ddcc9e36de1c08feb6abba (diff)
implement MessageOut.ui.qml in ChatGroup.ui.qml && remove MessageOut.ui.qml
Diffstat (limited to 'MessageOut.ui.qml')
-rw-r--r--MessageOut.ui.qml66
1 files changed, 0 insertions, 66 deletions
diff --git a/MessageOut.ui.qml b/MessageOut.ui.qml
deleted file mode 100644
index d4d3747..0000000
--- a/MessageOut.ui.qml
+++ /dev/null
@@ -1,66 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-import QtGraphicalEffects 1.15
-import Bootstrap 5.3
-
-Item {
- width: 360
-
- RowLayout {
- id: rowLayout
- anchors.fill: parent
-
- ColumnLayout {
- id: messageOut
- Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
- Layout.fillWidth: true
- Layout.fillHeight: true
- Rectangle {
- id: rectangle
- width: messageOutText.width
- height: messageOutText.height
- color: "#2787f5"
- radius: 16
- Layout.maximumHeight: messageOutText.height
- Layout.maximumWidth: memessageOutText.width
- Layout.minimumHeight: messageOutText.height
- Layout.minimumWidth: memessageOutText.width
- Layout.fillWidth: true
-
- Label {
- id: messageOutText
- text: qsTr("Hey, Marshall! How are you? Can you please change the color theme of the website to pink and purple? 😂")
- wrapMode: Text.Wrap
- rightPadding: 20
- leftPadding: 20
- bottomPadding: 16
- topPadding: 16
- Layout.fillWidth: true
- width: messageOut.width
- }
- }
-
- Label {
- id: messageTimestamp
- text: qsTr("08:45 PM")
- Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
- }
- }
-
- Rectangle {
- id: messageOutAvatar
- width: 64
- height: 64
- color: "#ffffff"
- radius: 100
- Layout.maximumHeight: 64
- Layout.maximumWidth: 64
- Layout.minimumHeight: 24
- Layout.minimumWidth: 24
- Layout.preferredHeight: 64
- Layout.preferredWidth: 64
- Layout.alignment: Qt.AlignRight | Qt.AlignBottom
- }
- }
-}