SearchPage.qml 245 B

123456789101112131415
  1. import QtQuick 2.15
  2. import "../components"
  3. DPage {
  4. id: root
  5. PagePlaceholder {
  6. anchors.centerIn: parent
  7. icon: "qrc:/resources/placeholders/search.svg"
  8. text: qsTr("There must be search")
  9. text2: qsTr("but there isn't")
  10. }
  11. }