parent
40001ef7a9
commit
dc96cf04a9
|
@ -13,6 +13,11 @@ Column {
|
||||||
onClicked: simpleModal.open()
|
onClicked: simpleModal.open()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StatusButton {
|
||||||
|
text: "Simple title modal"
|
||||||
|
onClicked: simpleTitleModal.open()
|
||||||
|
}
|
||||||
|
|
||||||
StatusButton {
|
StatusButton {
|
||||||
text: "Modal with header image"
|
text: "Modal with header image"
|
||||||
onClicked: headerImageModal.open()
|
onClicked: headerImageModal.open()
|
||||||
|
@ -65,6 +70,12 @@ Column {
|
||||||
header.subTitle: "Subtitle"
|
header.subTitle: "Subtitle"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StatusModal {
|
||||||
|
id: simpleTitleModal
|
||||||
|
anchors.centerIn: parent
|
||||||
|
header.title: "Some Title"
|
||||||
|
}
|
||||||
|
|
||||||
StatusModal {
|
StatusModal {
|
||||||
id: headerImageModal
|
id: headerImageModal
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|
|
@ -119,6 +119,7 @@ Row {
|
||||||
color:Theme.palette.baseColor1
|
color:Theme.palette.baseColor1
|
||||||
width: parent.width
|
width: parent.width
|
||||||
elide: statusImageWithTitle.subTitleElide
|
elide: statusImageWithTitle.subTitleElide
|
||||||
|
visible: !!statusImageWithTitle.subTitle
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue