summaryrefslogtreecommitdiff
path: root/ChatGroup.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ChatGroup.ui.qml')
-rw-r--r--ChatGroup.ui.qml27
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
+ }
+ }
+}