summaryrefslogtreecommitdiff
path: root/ChatGroup.ui.qml
blob: ab42d88fbe00eb65e8c3515e881b5225d2afbaed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
		}
	}
}