возможно ли избавиться от тени Drawer на ToolBar? Параметр z не помогает
ApplicationWindow {
id: window
visible: true
width: 412
height: 732
Drawer {
z: 100
id: drawer
y: header.height
width: window.width - toolbar.height
height: window.height - toolbar.height
}
header: ToolBar {
z: 10000
RowLayout {
z: 10000
id: toolbar
anchors.fill: parent
ToolButton {
text: "☰"
onClicked: drawer.opened ? drawer.close() : drawer.open()
}
}
}
}
onClicked: drawer.visible ? drawer.close() : drawer.open()
можно ли избавиться от тени... (если я правильно понял вопрос): да, например можно поместить в Drawer прямоугольник, и делать с ним что хочешь
Обсуждают сегодня