Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.61 KB | None | 0 0
  1. import QtQuick 2.2
  2. import Sailfish.Silica 1.0
  3.  
  4. ListItem {
  5.     id: listItem
  6.  
  7.     contentHeight: Theme.itemSizeMedium // minimum size for touch interaction
  8.  
  9.     Image {
  10.         anchors.centerIn: parent
  11.         source: "image://theme/icon-launcher-component-gallery" +
  12.                  (listItem.highlighted ? "?" + Theme.highlightColor : "")
  13.     }
  14.  
  15. //    HighlightImage {
  16. //        anchors.centerIn: parent
  17. //        source: "image://theme/icon-launcher-component-gallery"
  18. //        highlighted: listItem.highlighted
  19. //        highlightColor: Theme.highlightColor // default value of highlight color
  20. //    }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement