qmlfrontend/main.qml
author Wuzzy <Wuzzy2@mail.ru>
Sat, 20 Apr 2019 05:39:57 +0200
changeset 14841 183677a07c8d
parent 14164 745c73e0e644
child 16041 caba603f461f
permissions -rw-r--r--
Separate Yoohoo.ogg into "Yoohoo" voice and kiss sound Sound has been separated with mp3splt, so no quality loss

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