qmlfrontend/main.qml
author unC0Rr
Thu, 29 Aug 2024 12:56:16 +0200
branchtransitional_engine
changeset 16024 3402b2185698
parent 16012 caba603f461f
child 16089 02304ad06381
permissions -rw-r--r--
Pass full path to WFC for tile loading

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