summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2023-05-18 14:13:20 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2023-05-18 14:13:20 +0700
commit6114dd5acbffd3ee3fc66b4e5da77030977a7f56 (patch)
treed9d85cf6723a0f436669847d77c60d9a6e6f3ee7
parentf34d6f4679410eb563374748bb8bf78b615f4ade (diff)
add roundedpill shape to text inputHEADmaster
-rw-r--r--ChatGroup.ui.qml190
1 files changed, 98 insertions, 92 deletions
diff --git a/ChatGroup.ui.qml b/ChatGroup.ui.qml
index 5d8052c..d8160b9 100644
--- a/ChatGroup.ui.qml
+++ b/ChatGroup.ui.qml
@@ -4,105 +4,111 @@ import QtQuick.Layouts 1.15
import QtGraphicalEffects 1.15
Page {
- property string titleText: qsTr("Bootstrap Community")
+ property string titleText: qsTr("Bootstrap Community")
- header: ToolBar {
- Label {
- text: titleText
- anchors.centerIn: parent
- }
- }
+ header: ToolBar {
+ Label {
+ text: titleText
+ anchors.centerIn: parent
+ }
+ }
- ListView {
- id: listView
- anchors {
- fill: parent
- leftMargin: 20
- rightMargin: 20
- }
- model: [11, 1, 6, 1, 11, 1, 7, 1, 11, 1]
- delegate:
- Item {
- width: listView.width
- height: message.height + 16
+ ListView {
+ id: listView
+ anchors {
+ fill: parent
+ leftMargin: 20
+ rightMargin: 20
+ }
+ model: [11, 1, 6, 1, 11, 1, 7, 1, 11, 1]
+ delegate: Item {
+ width: listView.width
+ height: message.height + 16
+ ColumnLayout {
+ id: message
+ width: parent.width
+ layoutDirection: modelData === 1 ? Qt.RightToLeft : Qt.LeftToRight
+ anchors {
+ left: modelData !== 1 ? messageAvatar.right : undefined
+ right: modelData === 1 ? messageAvatar.left : undefined
+ bottom: parent.bottom
+ }
+ spacing: 8
- ColumnLayout {
- id: message
- width: parent.width
- layoutDirection: modelData === 1 ? Qt.RightToLeft : Qt.LeftToRight
- anchors {
- left: modelData !== 1 ? messageAvatar.right : undefined
- right: modelData === 1 ? messageAvatar.left : undefined
- bottom: parent.bottom
- }
- spacing: 8
+ Label {
+ id: messageText
+ 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.maximumWidth: parent.width - (messageAvatar.width + 16)
+ background: Rectangle {
+ radius: 16
+ color: modelData == 1 ? "#2787f5" : "#95aac9"
+ }
+ }
+ Label {
+ id: messageTimestamp
+ text: qsTr("08:45 PM")
+ }
+ }
- Label {
- id: messageText
- 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.maximumWidth: parent.width - (messageAvatar.width + 16)
- background: Rectangle {
- radius: 16
- color: modelData ==1 ? "#2787f5" : "#95aac9"
- }
- }
+ Image {
+ id: messageAvatar
+ anchors {
+ left: modelData !== 1 ? parent.left : undefined
+ right: modelData === 1 ? parent.right : undefined
+ bottom: parent.bottom
+ }
+ source: "https://offsetcode.com/themes/messenger/2.2.0/assets/img/avatars/"
+ + modelData + ".jpg"
+ sourceSize {
+ width: 26
+ height: 26
+ }
+ layer {
+ enabled: true
+ effect: OpacityMask {
+ maskSource: Rectangle {
+ width: 26
+ height: 26
+ radius: 13
+ }
+ }
+ }
+ }
+ }
+ }
- Label {
- id: messageTimestamp
- text: qsTr("08:45 PM")
- }
- }
+ footer: Pane {
+ RowLayout {
+ width: parent.width
+ Rectangle {
+ color: "#ebf1f7"
+ anchors.fill: parent
+ radius: 100
+ }
- Image {
- id: messageAvatar
- anchors {
- left: modelData !== 1 ? parent.left : undefined
- right: modelData === 1 ? parent.right : undefined
- bottom: parent.bottom
- }
- source: "https://offsetcode.com/themes/messenger/2.2.0/assets/img/avatars/"
- + modelData + ".jpg"
- sourceSize {
- width: 26
- height: 26
- }
- layer {
- enabled: true
- effect: OpacityMask {
- maskSource: Rectangle {
- width: 26
- height: 26
- radius: 13
- }
- }
- }
- }
- }
- }
+ TextArea {
+ id: messageField
+ Layout.fillWidth: true
+ placeholderText: qsTr("Type your message...")
+ wrapMode: TextArea.Wrap
+ Layout.leftMargin: 16
+ }
- footer: Pane {
- RowLayout {
- width: parent.width
-
- TextArea {
- id: messageField
- Layout.fillWidth: true
- placeholderText: qsTr("Type your message...")
- wrapMode: TextArea.Wrap
- }
-
- Button {
- id: sendButton
- text: qsTr("Send")
- enabled: messageField.length > 0
- }
- }
- }
+ RoundButton {
+ id: sendButton
+ text: qsTr("Send")
+ icon.source: "../qeduport/Material/svg/outlined/send.svg"
+ display: AbstractButton.IconOnly
+ Layout.margins: 8
+ enabled: messageField.length > 0
+ }
+ }
+ }
}