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