SearchPanel.qml 248 B

123456789101112131415161718
  1. import QtQuick 2.15
  2. import DMusic 1.0
  3. import "components"
  4. FloatingPanel {
  5. id: root
  6. height: 150
  7. triangleCenter: horizontalCenter
  8. triangleTop: top
  9. triangleRotation: 180
  10. MouseArea {
  11. anchors.fill: parent
  12. hoverEnabled: true
  13. }
  14. }