qmlfrontend/main.qml
author unC0Rr
Tue, 31 Dec 2024 15:19:43 +0100
changeset 16054 629d5123a979
parent 16012 caba603f461f
permissions -rw-r--r--
Merge transitional_engine branch into default

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