marcin
2014-07-23 11:25:27 +02:00
parent 414e85e611
commit 43c7920233
7 changed files with 229 additions and 173 deletions

View File

@@ -6,6 +6,20 @@ ListView {
clip: true
boundsBehavior: ListView.StopAtBounds
footer: Rectangle {
height: 127
width: listView.width
color: "#FFFFFF"
Text {
anchors.centerIn: parent
font.family: "Arial"
font.pixelSize: 14
color: "#545454"
text: qsTr("No more results")
}
}
property var previousItem
delegate: Rectangle {
id: delegate
@@ -159,7 +173,7 @@ ListView {
font.family: "Arial"
font.pixelSize: 12
color: "#545454"
text: qsTr("Amount")
text: qsTr("Balance")
}
Text {
@@ -167,7 +181,7 @@ ListView {
font.pixelSize: 18
font.letterSpacing: -1
color: "#000000"
text: amount
text: balance
}
}
@@ -180,7 +194,7 @@ ListView {
font.family: "Arial"
font.pixelSize: 12
color: "#545454"
text: qsTr("Balance")
text: qsTr("Amount")
}
Row {
@@ -200,7 +214,7 @@ ListView {
font.pixelSize: 18
font.letterSpacing: -1
color: out ? "#FF4F41" : "#36B05B"
text: balance
text: amount
}
}
}