core running simple app

This commit is contained in:
talksik
2024-02-07 15:25:36 -08:00
commit 87d431eaad
4 changed files with 536 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import QtQuick
import QtQuick.Controls
Window {
id: window
width: 640
height: 480
visible: true
title: qsTr("WIFI picker")
signal scanNetworks()
Button {
id: scanButton
text: "Scan for networks"
onClicked: window.scanNetworks()
}
}