aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/qml/Navigator.qml
blob: 00f4c1be8b3355b454d6aa2d87b57724ed5c7ba7 (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 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15

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
        }
    }
}