qmlfrontend/main.qml
author unC0Rr
Mon, 02 Dec 2024 17:36:44 +0100
branchtransitional_engine
changeset 16045 58a2d806fc47
parent 16012 caba603f461f
permissions -rw-r--r--
Tweak the rest of map templates

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

ApplicationWindow {
  visible: true
  width: 640
  height: 480
  title: qsTr("Hello World")

  SwipeView {
    id: swipeView
    anchors.fill: parent

    Page1 {
    }
  }
}