Warning, /system/mycroft-gui/tests/BoxLayoutTest.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.5
0002 import QtQuick.Controls 2.4 as Controls
0003 import QtQuick.Layouts 1.3
0004 import Mycroft 1.0 as Mycroft
0005 import org.kde.kirigami 2.5 as Kirigami
0006
0007 Mycroft.BoxLayout {
0008 id: root
0009 width: 400
0010 height: 600
0011 Rectangle {
0012 Layout.fillWidth: true
0013 Layout.fillHeight: true
0014 color: "red"
0015 }
0016 Rectangle {
0017 Layout.fillWidth: true
0018 Layout.fillHeight: true
0019 color: "Blue"
0020 }
0021 }
0022