qmlfrontend/main.qml
author unC0Rr
Tue, 21 Jan 2025 22:14:28 +0100
changeset 16089 3f73daa3f212
parent 16041 caba603f461f
child 16118 02304ad06381
permissions -rw-r--r--
Adopt newer version of png lib

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