28 lines
613 B
QML
28 lines
613 B
QML
|
import QtQuick 2.0
|
||
|
import Sailfish.Silica 1.0
|
||
|
|
||
|
FullscreenContentPage {
|
||
|
id: profileImage
|
||
|
allowedOrientations: Orientation.All
|
||
|
|
||
|
property string image: ""
|
||
|
|
||
|
Image {
|
||
|
source: image
|
||
|
fillMode: Image.PreserveAspectFit
|
||
|
anchors.fill: parent
|
||
|
}
|
||
|
|
||
|
IconButton {
|
||
|
icon.source: "image://theme/icon-m-dismiss"
|
||
|
anchors {
|
||
|
top: profileImage.top
|
||
|
topMargin: Theme.horizontalPageMargin
|
||
|
right: parent.right
|
||
|
rightMargin: Theme.horizontalPageMargin
|
||
|
}
|
||
|
onClicked: pageStack.pop()
|
||
|
}
|
||
|
|
||
|
}
|