diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-05-08 15:30:55 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-05-08 15:30:55 +0800 |
commit | aa51c0a688ad9a174f7f5abc222bdd49a7a9cfb2 (patch) | |
tree | 2e2b931d7d41f9c3457206698b6292be9ae4311c /ChatGroup.ui.qml | |
parent | c873d1e6eba863f4247690b335940b8b8bc103af (diff) |
Chat Group implementation
Diffstat (limited to 'ChatGroup.ui.qml')
-rw-r--r-- | ChatGroup.ui.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ChatGroup.ui.qml b/ChatGroup.ui.qml new file mode 100644 index 0000000..ab42d88 --- /dev/null +++ b/ChatGroup.ui.qml @@ -0,0 +1,27 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 +import Bootstrap 5.3 + +Flickable { + property string titleText: qsTr("Bootstrap Community") + contentHeight: container.height + + ColumnLayout { + id: container + anchors { + top: parent.top + left: parent.left + leftMargin: 20 + right: parent.right + rightMargin: 20 + } + + Label { + text: titleText + Bootstrap.heading: 5 + Layout.topMargin: 12 + Layout.bottomMargin: 12 + } + } +} |