qml - "toast" 喜欢淡入淡出的消息框

qml - "toast" like fading message box

是否已经有类似 android "toast" 淡入淡出的 qml 消息弹出窗口?我当然可以自己创建一些东西,但我会 assume/hope Qt / QtQuickControls2

已经提供了类似的东西

参见ToolTip。当使用 Material 样式时,它的样式类似于 "toast"。

import QtQuick 2.9
import QtQuick.Controls 2.2

ApplicationWindow {
    width: 360
    height: 520
    visible: true

    Button {
        text: "Button"
        anchors.centerIn: parent

        ToolTip.text: "ToolTip"
        ToolTip.visible: pressed
        ToolTip.timeout: 3000
        ToolTip.delay: 500
    }
}