12 lines
179 B
QML
12 lines
179 B
QML
import QtQuick
|
|
|
|
Item {
|
|
implicitWidth: 479
|
|
implicitHeight: 137
|
|
anchors.centerIn: parent
|
|
Image {
|
|
anchors.centerIn: parent
|
|
source: "kris.png"
|
|
}
|
|
}
|