amnezia-client/client/ui/qml/Config/GlobalConfig.qml
2023-01-08 23:10:46 +00:00

29 lines
717 B
QML

pragma Singleton
import QtQuick
Item {
readonly property string screenHome: "qrc:/ScreenHome.qml"
readonly property string screenHomeIntroGifEx1: "qrc:/ScreenHomeIntroGifEx1.qml"
readonly property int screenWidth: 380
readonly property int screenHeight: 680
readonly property int defaultMargin: 20
function isMobile() {
if (Qt.platform.os == "android" ||
Qt.platform.os == "ios") {
return true
}
return false
}
function isDesktop() {
if (Qt.platform.os == "windows" ||
Qt.platform.os == "linux" ||
Qt.platform.os == "osx") {
return true
}
return false
}
}