qmlfrontend/main.qml
author unC0Rr
Mon, 27 Jan 2025 19:11:58 +0100
changeset 16098 8efb97933020
parent 16041 caba603f461f
child 16118 02304ad06381
permissions -rw-r--r--
Description: Find clangs Author: Gianfranco Costamagna <locutusofborg@debian.org> Last-Update: 2022-10-03

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