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