// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { DemoPalette, Page, SpinBox, Label, PushButton } from "./common.slint"; import { WidePrinterQueueList } from "./printer_queue.slint"; export component PrintPage inherits Page { has-back-button: true; header: @tr("Print"); GridLayout { padding-top: 46px /* header line height in design */ + /* extra top-padding in design */ 27px; spacing: 24px; Row { Text { text: @tr("Printing-Queue"); color: DemoPalette.secondary-foreground-color; font-size: DemoPalette.base-font-size * 1.125; font-weight: 800; } } Row { queue := WidePrinterQueueList { viewport-width: self.width; } } } }