mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 07:15:11 +02:00
20 lines
411 B
QML
20 lines
411 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
|
|
StackView {
|
|
id: stackView
|
|
anchors.fill: parent
|
|
anchors.leftMargin: 10
|
|
anchors.rightMargin: 10
|
|
anchors.topMargin: 40
|
|
|
|
signal sendToScript(var message);
|
|
|
|
NewMaterialDialog {
|
|
id: dialog
|
|
anchors.fill: parent
|
|
Component.onCompleted:{
|
|
dialog.sendToScript.connect(stackView.sendToScript);
|
|
}
|
|
}
|
|
}
|