qmlfrontend/main.qml
author unC0Rr
Mon, 03 Feb 2025 16:52:05 +0100
changeset 16113 36862a9ec59b
parent 16041 caba603f461f
child 16118 02304ad06381
permissions -rw-r--r--
Update lib-hedgewars-engine to use newer versions of dependencies

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