import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.15
Window {
id: win
width: 800
height: 600
visible: true
title: qsTr("Hello World")
Flickable{
id:flick
width: 500
height: 500
contentHeight: imag.height
contentWidth: imag.width
Image {
id: imag
source: "Star Wars X Wing Fighter Art (1920x1080).png"
}
}
}