aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/source/qml/Navigator.qml
blob: 40c66e4e02e3d278dd56761851bfd6bf39dd72ba (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
28
29
30
31
32
33
34
35
36
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

Item {
    ColumnLayout {
        spacing: 0

        Button {
            contentItem: Label {
                text: qsTr("Settings")
                anchors.verticalCenter: parent.verticalCenter
            }

            Layout.fillWidth: true
        }

        Button {
            contentItem: Label {
                text: qsTr("Keyword")
                anchors.verticalCenter: parent.verticalCenter
            }

            Layout.fillWidth: true
        }

        Button {
            contentItem: Label {
                text: qsTr("Knowledge Fragments")
                anchors.verticalCenter: parent.verticalCenter
            }

            Layout.fillWidth: true
        }
    }
}