24 lines
828 B
QML
24 lines
828 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15 as Controls
|
|
import QtQuick.Layouts 1.15
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
|
|
// Provides basic features needed for all kirigami applications
|
|
Kirigami.ApplicationWindow {
|
|
// Unique identifier to reference this object
|
|
id: root
|
|
title: qsTr("BigScreenTube")
|
|
color: Kirigami.Theme.backgroundColor
|
|
// /home/zorg/projects/bigscreen-video/python-mpv-qml-example/matroska-test-files/test_files/test1.mkv
|
|
Controls.StackView {
|
|
id: appStack
|
|
initialItem: SearchPage {
|
|
id: searchPage
|
|
}
|
|
/*initialItem: VideoPage {
|
|
videoSource: "/home/zorg/projects/bigscreen-video/python-mpv-qml-example/matroska-test-files/test_files/test1.mkv"
|
|
videoTitle: "Test"
|
|
}*/
|
|
anchors.fill: parent
|
|
}
|
|
}
|