ToolboxLoadingPage.qml 538 B

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