아래 예와 같이 Ubuntu SDK로 대화 상자를 만들면 대화 상자가 전체 메인 뷰를 덮습니다.
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.Popups 0.1
MainView {
id: root
applicationName: "pd"
width: units.gu(54)
height: units.gu(96)
Button {
id: mb
text: "Party Down"
width: parent.width * 0.8
anchors.centerIn: parent
onClicked: PopupUtils.open(Qt.createComponent("fundialog.qml"), mb)
}
}
fundialog.qml :
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.Popups 0.1
Dialog {
id: fundialog
title: "Are we having fun yet?"
width: units.gu(10)
height: units.gu(10)
Button {
text: "Cancel"
onClicked: PopupUtils.close(fundialog)
}
}
우분투 SDK 갤러리 에서처럼 보이고 싶습니다.
그러나 갤러리 코드 에서이 동작이 수정 된 위치를 알 수 없습니다.