essOutsideParent | T.Popup.CloseOnReleaseOutsideParent Material.theme: Material.Dark enter: Transition { // toast_enter NumberAnimation { property: "opacity"; from: 0.0; to: 1.0; easing.type: Easing.OutQuad; duration: 500 } } exit: Transition { // toast_exit NumberAnimation { property: "opacity"; from: 1.0; to: 0.0; easing.type: Easing.InQuad; duration: 500 } } contentItem: Text { text: control.text font: control.font wrapMode: Text.Wrap color: control.Material.foreground } background: Rectangle { implicitHeight: control.Material.tooltipHeight color: control.Material.tooltipColor opacity: 0.9 radius: 2 } }