-
-
Save simonsanchezart/9a9f1922ab4f4b75ce0925242c54b22d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Image { | |
anchors.fill: parent | |
horizontalAlignment: Image.AlignHCenter | |
source: "images/UI_Assets/background.png" | |
fillMode: Image.PreserveAspectCrop | |
width: 800 | |
height: 600 | |
Image { | |
id: image | |
anchors.fill: parent | |
source: "images/UI_Assets/background_body.png" | |
fillMode: Image.PreserveAspectFit | |
Image { | |
id: dot | |
anchors.left: parent.left | |
anchors.right: parent.right | |
anchors.top: parent.top | |
anchors.bottom: parent.bottom | |
anchors.leftMargin: 455 | |
anchors.rightMargin: 299 | |
anchors.topMargin: 277 | |
anchors.bottomMargin: 277 | |
source: "images/UI_Assets/button_circle_b.png" | |
fillMode: Image.PreserveAspectFit | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment