24 lines
538 B
QML
24 lines
538 B
QML
import QtQuick 2.0
|
|
import Sailfish.Silica 1.0
|
|
|
|
Page {
|
|
property string img: ""
|
|
Image {
|
|
id: showImg
|
|
fillMode: Image.PreserveAspectFit
|
|
source: img
|
|
anchors.fill: parent
|
|
|
|
width: parent.width
|
|
height: parent.height
|
|
BusyIndicator {
|
|
id: imgBysy
|
|
running: showImg.progress !== 1.0
|
|
size: BusyIndicatorSize.Large
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
}
|
|
}
|