Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. SilicaListView {
  2. id: recentUpdatesView
  3.  
  4. width: parent.width
  5. height: contentHeight
  6. delegate: UpdateListItem {
  7. imageUrl: updateImageUrl
  8. headerText: updateHeaderText
  9. date: Qt.formatDateTime(updateUpdatedDate)
  10. updateObject: Item {
  11.  
  12. }
  13. }
  14.  
  15. model: ProfileUpdatesModel {
  16. userId: userProfile.userId
  17. }
  18.  
  19. BusyIndicator {
  20. size: BusyIndicatorSize.Large
  21. anchors.centerIn: parent
  22. running: profilePage.busy
  23. visible: running
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement