diff options
-rw-r--r-- | ChatGroup.ui.qml | 27 | ||||
-rw-r--r-- | Messenger.qrc | 1 |
2 files changed, 28 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 + } + } +} diff --git a/Messenger.qrc b/Messenger.qrc index 60a79ce..a168ad5 100644 --- a/Messenger.qrc +++ b/Messenger.qrc @@ -2,5 +2,6 @@ <qresource prefix="qessenger"> <file>Card.ui.qml</file> <file>Friends.ui.qml</file> + <file>ChatGroup.ui.qml</file> </qresource> </RCC> |