Posts by Diogo Guimarães • 19 points
3 posts
- 
		1 votes1 answer27 viewsA: How to use the information of a text field in qml in a py fileI don’t know if it helps but I’ve tried it now and I think it might help: QML: main.qml import QtQuick 2.13 import QtQuick.Window 2.13 import QtQuick.Controls 2.12 import QmlTools 1.0 Window {… pythonanswered Diogo Guimarães 19
- 
		-1 votes1 answer108 viewsA: How can I create a layout like the image with QML?You can try following the example below... Ex: import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: Screen.width height: Screen.height visible: true title: qsTr("Layout") property color… 
- 
		1 votes1 answer94 viewsA: QML Camera does not get FULL SCREENGood! Since the parent item has 1080*720 if you want the camera stretched to this resolution, fillMode: Videooutput.Stretch VideoOutput { id : video anchors.fill: parent //Adiciona isto... fillMode:…