Add weather routes project progress

This commit is contained in:
2025-04-07 19:40:38 +02:00
parent 8941d84bc8
commit fa5f6b2588
52 changed files with 2027 additions and 0 deletions

17
WeatherRoutes/Main.qml Normal file
View File

@@ -0,0 +1,17 @@
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
}
}