qmlfrontend/main.qml
author nemo
Wed, 05 Dec 2018 09:38:31 -0500
branch0.9.25
changeset 14371 2ab312c47dc3
parent 14148 745c73e0e644
permissions -rw-r--r--
make pas2c function without haskell aborting if locale is C

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