123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- import QtQuick 2.9
- import QtQuick.Layouts 1.1
- import qtprotobuf.examples 1.0
- StackItem {
- id: root
- hasBack: false
- property alias model: contactList.model
- signal requestAddContact()
- signal showContact(var contact)
- ListView {
- id: contactList
- anchors.fill: parent
- delegate: Item {
- id: contactDelegate
- property Contact contact: model.modelData
- width: contactList.width
- height: 70
- ColumnLayout {
- anchors.fill: parent
- anchors.margins: 10
- Row {
- Layout.alignment: Qt.AlignVCenter
- spacing: 5
- PrimaryText {
- id: firstName
- text: contactDelegate.contact.firstName
- }
- PrimaryText {
- id: middleName
- text: contactDelegate.contact.middleName
- }
- PrimaryText {
- id: lastName
- text: contactDelegate.contact.lastName
- }
- }
- Row {
- Layout.alignment: Qt.AlignVCenter
- SecondaryText {
- id: defaultPhoneNumberText
- property PhoneNumber defaultPhoneNumber: contactDelegate.contact.phonesData.length > 0 ?
- contactDelegate.contact.phonesData[0] : null
- visible: defaultPhoneNumber != null
- text: defaultPhoneNumber ?
- "+" + defaultPhoneNumber.countryCode + " " + defaultPhoneNumber.number : ""
- }
- }
- }
- Rectangle {
- color:"#cfdfe7"
- anchors.left: parent.left
- anchors.right: parent.right
- height: 1
- }
- Rectangle {
- color:"#cfdfe7"
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.top: parent.bottom
- height: 1
- visible: (contactList.count - 1) === model.index
- }
- MouseArea {
- anchors.fill: parent
- onClicked: showContact(contactDelegate.contact)
- }
- }
- }
- FloatingRoundButton {
- enabled: !contactList.moving
- anchors.bottom: parent.bottom
- anchors.right: parent.right
- anchors.margins: 10
- icon: "qrc:/images/plus.png"
- onClicked: root.requestAddContact()
- }
- }
|