2020-07-15 21:04:14 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: stickerId
|
|
|
|
visible: contentType === Constants.stickerType
|
|
|
|
width: 140
|
|
|
|
height: this.visible ? 140 : 0
|
2020-08-27 23:26:12 +00:00
|
|
|
sourceSize.width: width
|
|
|
|
sourceSize.height: height
|
2020-07-15 21:04:14 +00:00
|
|
|
source: this.visible ? ("https://ipfs.infura.io/ipfs/" + sticker) : ""
|
|
|
|
}
|