13 lines
237 B
QML
13 lines
237 B
QML
import QtQuick
|
|
import Caelestia.Images
|
|
|
|
Image {
|
|
id: root
|
|
|
|
property string path
|
|
|
|
asynchronous: true
|
|
fillMode: Image.PreserveAspectCrop
|
|
source: IUtils.urlForPath(path, fillMode)
|
|
sourceSize: Qt.size(width, height)
|
|
}
|