mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-11-06 20:42:15 +00:00
25 lines
392 B
QML
25 lines
392 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import "./DatabaseChecker" as DatabaseChecker
|
|
|
|
ApplicationWindow {
|
|
visible: true
|
|
|
|
width: 800
|
|
height: 600
|
|
|
|
StackLayout {
|
|
id: stackLayout
|
|
anchors.fill: parent
|
|
currentIndex: 0
|
|
|
|
DatabaseChecker.Index {
|
|
onReady: parent.currentIndex = 1
|
|
}
|
|
|
|
AppMain {}
|
|
}
|
|
}
|