Warning, /plasma/milou/lib/qml/test/main.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.1
0002 import QtQuick.Layouts 1.1
0003 import org.kde.milou 0.1 as Milou
0004 import org.kde.plasma.components 3.0 as PlasmaComponents3
0005 
0006 ColumnLayout {
0007     width: 1000
0008     height: 1100
0009 
0010     PlasmaComponents3.TextField {
0011         id: textField
0012         text: "power"
0013         Layout.fillWidth: true
0014     }
0015 
0016     Milou.ResultsView {
0017         queryString: textField.text
0018         focus: true
0019         Layout.fillWidth: true
0020         Layout.fillHeight: true
0021     }
0022 }