1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | import QtQuick 2.4
import Ubuntu.Components 1.3
MainView {
width: units.gu(48)
height: units.gu(60)
Page {
title: "Image"
Image {
anchors.fill: parent
source: "/home/phablet/Pictures/com.ubuntu.camera/image20160309_173839854.jpg"
}
}
}
|