Added details to the view.
This commit is contained in:
parent
29335f9c51
commit
ff1e3715b4
1 changed files with 46 additions and 15 deletions
|
@ -55,11 +55,12 @@ Dialog {
|
||||||
|
|
||||||
SilicaFlickable {
|
SilicaFlickable {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
contentHeight: column.height
|
contentHeight: mainColumn.height
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
id: column
|
id: mainColumn
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
||||||
RemorsePopup {
|
RemorsePopup {
|
||||||
id: remorse
|
id: remorse
|
||||||
onTriggered: pageStack.pop()
|
onTriggered: pageStack.pop()
|
||||||
|
@ -95,6 +96,10 @@ Dialog {
|
||||||
cancelText: qsTr("Notes")
|
cancelText: qsTr("Notes")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Column {
|
||||||
|
width: parent.width
|
||||||
|
spacing: Theme.paddingLarge
|
||||||
|
|
||||||
LinkedLabel {
|
LinkedLabel {
|
||||||
id: contentLabel
|
id: contentLabel
|
||||||
x: Theme.horizontalPageMargin
|
x: Theme.horizontalPageMargin
|
||||||
|
@ -112,6 +117,32 @@ Dialog {
|
||||||
//console.log(text)
|
//console.log(text)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Separator {
|
||||||
|
id: separator
|
||||||
|
width: parent.width
|
||||||
|
color: Theme.primaryColor
|
||||||
|
horizontalAlignment: Qt.AlignHCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
Column {
|
||||||
|
width: parent.width
|
||||||
|
|
||||||
|
DetailItem {
|
||||||
|
label: qsTr("Modified")
|
||||||
|
value: new Date(account.model.get(noteIndex).modified * 1000).toLocaleString(Qt.locale(), Locale.ShortFormat)
|
||||||
|
}
|
||||||
|
DetailItem {
|
||||||
|
label: qsTr("Favorite")
|
||||||
|
value: account.model.get(noteIndex).favorite ? qsTr("yes") : qsTr("no")
|
||||||
|
}
|
||||||
|
DetailItem {
|
||||||
|
label: qsTr("Category")
|
||||||
|
value: account.model.get(noteIndex).category
|
||||||
|
visible: value.length > 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
VerticalScrollDecorator {}
|
VerticalScrollDecorator {}
|
||||||
|
|
Loading…
Reference in a new issue