qmlfrontend/main.qml
author nemo
Mon, 14 Jan 2019 15:01:43 -0500
branch0.9.25
changeset 14588 e27f1d1c1da9
parent 14143 745c73e0e644
child 16012 caba603f461f
permissions -rw-r--r--
aaagh can't just move delete like that due to our RNG scrambling... reverting on branch. we'll just have to take our chances w/ the bad code

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3

ApplicationWindow {
  visible: true
  width: 640
  height: 480
  title: qsTr("Hello World")

  SwipeView {
    id: swipeView
    anchors.fill: parent

    Page1 {
    }
  }
}