14 lines
210 B
QML
14 lines
210 B
QML
import "root:/config"
|
|
import QtQuick
|
|
|
|
Item {
|
|
id: root
|
|
|
|
visible: height > 0
|
|
implicitHeight: content.implicitHeight
|
|
implicitWidth: content.implicitWidth
|
|
|
|
Content {
|
|
id: content
|
|
}
|
|
}
|