forked from qt-creator/qt-creator
		
	- Use Qt Quick Application - Empty wizard template to create a simpler project - Use Add New Assets button to add the Bluebubble.svg file to the project and QRC - Use Connections View Properties tab to add custom properties - Use Properties view and Binding Editor to specify values for the custom properties - Add screenshots Fixes: QTCREATORBUG-24478 Change-Id: Ic165684141b06dc1870054c8faa2f27f33162c20 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
		
			
				
	
	
		
			13 lines
		
	
	
		
			240 B
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			240 B
		
	
	
	
		
			QML
		
	
	
	
	
	
import QtQuick 2.14
 | 
						|
import QtQuick.Window 2.14
 | 
						|
 | 
						|
Image {
 | 
						|
    id: bubble
 | 
						|
    source: "Bluebubble.svg"
 | 
						|
    smooth: true
 | 
						|
    property real centerX
 | 
						|
    property real bubbleCenter
 | 
						|
    property real centerY
 | 
						|
    fillMode: Image.PreserveAspectFit
 | 
						|
}
 |