slint/examples/printerdemo_old/ui/common.slint
2023-06-16 10:55:08 +02:00

16 lines
378 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
export component Label inherits Text {
font-size: 28px;
horizontal-stretch: 1;
}
export component Page inherits Rectangle {
background: white;
animate y { duration: 300ms; easing: ease-out; }
}
export component Preview inherits Image {
source: @image-url("images/cat.jpg");
}