qmlfrontend/main.qml
author nemo
Wed, 19 Jun 2019 22:36:11 -0400
changeset 15188 7ae8ec7a9a8e
parent 14148 745c73e0e644
permissions -rw-r--r--
consistent indentation with rest of unit. was just to help me read this block

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