qmlfrontend/main.qml
author unC0Rr
Mon, 27 Jan 2025 22:22:10 +0100
changeset 16100 fba762376a07
parent 16041 caba603f461f
permissions -rw-r--r--
- Reduce wfc templates definition file by removing excess fields with false value - Add first attempt at spikes tile set

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