qmlfrontend/main.qml
author unC0Rr
Fri, 22 Nov 2024 17:29:30 +0100
branchtransitional_engine
changeset 16069 6c5b3c576fc6
parent 16041 caba603f461f
permissions -rw-r--r--
Add some progress on rust AI

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