From 6de30011007e45e43486e074e0d2af8c3461829c Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Wed, 4 Sep 2024 15:48:11 -0500 Subject: [PATCH] Pretty "Create Poll" button. --- applications/voting/vote.qml | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/applications/voting/vote.qml b/applications/voting/vote.qml index 6cb6605..18bdfd4 100644 --- a/applications/voting/vote.qml +++ b/applications/voting/vote.qml @@ -18,33 +18,37 @@ Rectangle { ColumnLayout { width: parent.width height: parent.height - 40 - // anchors.top: navigation_bar.bottom visible: current_page == "poll_list" Item { - height: 40 - width: parent.width - 40 + height: 50 + width: parent.width Rectangle { color: "green" - width: parent.width - height: 30 - } + width: parent.width - 40 + height: 40 + y: 10 + anchors.horizontalCenter: parent.horizontalCenter - Text { - text: "Create Poll" - font.pointSize: 20 - } + Text { + anchors.centerIn: parent + text: "Create Poll" + font.pointSize: 18 + color: "white" + } - MouseArea { - anchors.fill: parent + MouseArea { + anchors.fill: parent - onClicked: { - current_page = "poll_create"; + onClicked: { + current_page = "poll_create"; + } } } } + ListView { property int index_selected: -1 width: parent.width