1#![allow(deprecated)]slint::slint!{#[include_path=r#"/input/slint/tests/driver/driverlib/../../cases/examples"#]
2// Copyright © SixtyFPS GmbH <info@slint.dev>
3// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
4
5Win := Window {
6 GridLayout {
7 Image {
8 source: @image-url("../../../examples/memory/icons/tile_logo.png");
9 }
10 Image {
11 source: @image-url("../../../examples/memory/icons/tile_logo.png");
12 colorize: yellow;
13 }
14 Image {
15 row: 1;
16 source: @image-url("../../../examples/memory/icons/tile_logo.png");
17 colorize: @linear-gradient(45deg, blue, red);
18 }
19 Image {
20 source: @image-url("../../../examples/memory/icons/tile_logo.png");
21 colorize: @linear-gradient(0, red, yellow, green, transparent);
22 }
23 }
24}
25}
26