ToolboxLoadingPage.qml 435 B

12345678910111213141516171819202122
  1. // Copyright (c) 2018 Ultimaker B.V.
  2. // Toolbox is released under the terms of the LGPLv3 or higher.
  3. import QtQuick 2.7
  4. import QtQuick.Controls 1.4
  5. import QtQuick.Controls.Styles 1.4
  6. Rectangle
  7. {
  8. id: page
  9. width: parent.width
  10. height: parent.height
  11. color: "transparent"
  12. Label
  13. {
  14. text: catalog.i18nc("@info", "Fetching packages...")
  15. anchors
  16. {
  17. centerIn: parent
  18. }
  19. }
  20. }