Add beginnings of printer list page

We just need this to have something to navigate to from the other pages as I implement that it automatically skips the sign in page when already signed in, and that it continues after being signed in from the sign in page.

Contributes to issue CURA-8609.
This commit is contained in:
Ghostkeeper 2021-10-05 13:26:25 +02:00
parent c761820d52
commit 9b1c8d1c7a
No known key found for this signature in database
GPG Key ID: 68F39EA88EEED5FF

View File

@ -147,5 +147,27 @@ Window
}
}
}
Rectangle
{
id: printerListPage
color: UM.Theme.getColor("main_background")
ColumnLayout
{
spacing: UM.Theme.getSize("default_margin").height
anchors.fill: parent
anchors.margins: UM.Theme.getSize("default_margin").width
Label
{
text: catalog.i18nc("@title:header", "The following printers will receive the new material profiles")
font: UM.Theme.getFont("large_bold")
color: UM.Theme.getColor("text")
Layout.preferredHeight: height
}
//TODO: Add contents.
}
}
}
}