qmlfrontend/main.qml
author unC0Rr
Sun, 19 May 2024 15:55:26 +0200
changeset 16015 0e90bdfc2642
parent 16012 caba603f461f
permissions -rw-r--r--
Handle game view resize

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