Warning, /system/mycroft-gui/tests/SkillViewTest.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.15
0002 import QtQuick.Layouts 1.15
0003 import QtQuick.Controls 2.15
0004 import QtQuick.Window 2.15
0005 import Mycroft 1.0 as Mycroft
0006
0007 Window {
0008 id: root
0009 visible: true
0010
0011 minimumHeight : deviceHeight || undefined
0012 maximumHeight : deviceHeight || undefined
0013 minimumWidth : deviceWidth || undefined
0014 maximumWidth : deviceWidth || undefined
0015 x: deviceWidth ? Screen.desktopAvailableHeight - width : undefined
0016 y: deviceHeight ? Screen.desktopAvailableHeight - height : undefined
0017 color: "black"
0018
0019 Mycroft.SkillView {
0020 id: mainView
0021 activeSkills.whiteList: singleSkill.length > 0 ? singleSkill : null
0022 anchors.fill: parent
0023 }
0024 }