initial commit to split repos

This commit is contained in:
2025-05-28 15:54:31 +02:00
parent 1582368303
commit bdcdf65432
52 changed files with 2027 additions and 0 deletions

17
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
}
}