18 lines
349 B
QML
18 lines
349 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtLocation
|
|
import QtPositioning
|
|
|
|
ApplicationWindow {
|
|
visible: true
|
|
|
|
width: Qt.platform.os == "android" ? Screen.width : 360
|
|
height: Qt.platform.os == "android" ? Screen.height : 640
|
|
title: "Weather Routes"
|
|
HomeScreen
|
|
{
|
|
id: homeScreen
|
|
anchors.fill: parent
|
|
}
|
|
}
|