2020-07-15 21:04:14 +00:00
|
|
|
import QtQuick 2.3
|
2020-09-23 08:18:23 +00:00
|
|
|
import "../../../../../shared" as Shared
|
2020-07-15 21:04:14 +00:00
|
|
|
import "../../../../../imports"
|
|
|
|
|
2020-09-30 17:49:14 +00:00
|
|
|
Loader {
|
|
|
|
property color color
|
|
|
|
|
|
|
|
id: root
|
|
|
|
active: contentType === Constants.stickerType
|
|
|
|
|
|
|
|
sourceComponent: Component {
|
|
|
|
Shared.ImageLoader {
|
|
|
|
color: root.color
|
|
|
|
width: 140
|
|
|
|
height: this.visible ? 140 : 0
|
|
|
|
source: this.visible ? ("https://ipfs.infura.io/ipfs/" + sticker) : ""
|
|
|
|
}
|
|
|
|
}
|
2020-07-15 21:04:14 +00:00
|
|
|
}
|