mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
28 lines
470 B
QML
28 lines
470 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import "."
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
width: 720
|
|
height: 405
|
|
title: qsTr("Open Story Teller BETA 1")
|
|
|
|
// ========================== COMPOSANTS DYNAMIQUES ==========================
|
|
|
|
Component {
|
|
id: idCompStoryView
|
|
StoryView {
|
|
|
|
}
|
|
}
|
|
|
|
StackView {
|
|
id: stackView
|
|
initialItem: idCompStoryView
|
|
anchors.fill: parent
|
|
}
|
|
}
|