是否有可以在 QML 中使用的 Bool 或 Flag 来确定手机是否正在运行该应用程序?

是否有可以在 QML 中使用的 Bool 或 Flag 来确定手机是否正在运行该应用程序?

例如:

Text {
    text: isPhone ? "this application is running on a phone" : "this application is not running on a phone"
}

相关内容