qmlfrontend/main.qml
author unC0Rr
Tue, 03 Sep 2024 11:16:16 +0200
branchtransitional_engine
changeset 16056 d4675c190fa5
parent 16041 caba603f461f
permissions -rw-r--r--
Make Point::with_margin function safe to use

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