aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/contactlist/SectionDelegate.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols2/contactlist/SectionDelegate.ui.qml')
-rw-r--r--examples/quickcontrols2/contactlist/SectionDelegate.ui.qml25
1 files changed, 6 insertions, 19 deletions
diff --git a/examples/quickcontrols2/contactlist/SectionDelegate.ui.qml b/examples/quickcontrols2/contactlist/SectionDelegate.ui.qml
index 3b9f7dc5..fa64ffbf 100644
--- a/examples/quickcontrols2/contactlist/SectionDelegate.ui.qml
+++ b/examples/quickcontrols2/contactlist/SectionDelegate.ui.qml
@@ -51,27 +51,14 @@
import QtQuick 2.7
import QtQuick.Controls 2.1
-Rectangle {
- height: 20
- width: 120
- gradient: Gradient {
- GradientStop {
- position: 0
- color: "#dddddd"
- }
-
- GradientStop {
- position: 1
- color: "blue"
- }
- }
+ToolBar {
+ id: background
Label {
- x: 12
- color: "white"
+ id: label
text: section
- style: Text.Raised
- font.pixelSize: 18
- font.bold: true
+ anchors.fill: parent
+ horizontalAlignment: Qt.AlignHCenter
+ verticalAlignment: Qt.AlignVCenter
}
}