mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-10 04:52:41 +01:00
26 lines
401 B
QML
26 lines
401 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
Feedback {
|
|
id:feedback
|
|
width: parent.width * .35
|
|
height: parent.height
|
|
anchors.left: parent.left
|
|
}
|
|
|
|
ScrollView {
|
|
anchors {
|
|
top:parent.top
|
|
right: parent.right
|
|
bottom:parent.bottom
|
|
left: feedback.left
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|