13 lines
157 B
QML
13 lines
157 B
QML
|
import QtQuick 2.9
|
||
|
import PositionerTest 1.0
|
||
|
|
||
|
ImplicitGrid {
|
||
|
columns: 2
|
||
|
rows: 1
|
||
|
|
||
|
Text {
|
||
|
text: "Text"
|
||
|
width: parent.width
|
||
|
}
|
||
|
}
|