1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4import { Palette } from "std-widgets.slint";
5
6export component Label inherits Text {
7 font-size: 28px;
8 horizontal-stretch: 1;
9}
10
11export component Page inherits Rectangle {
12 background: Palette.background;
13 animate y { duration: 300ms; easing: ease-out; }
14}
15
16export component Preview inherits Image {
17 source: @image-url("images/cat.jpg");
18}
19