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 property <color> base: #00007F;
7 GridLayout {
8 r := Rectangle {
9 background: base;
10 }
11 Rectangle {
12 background: base.brighter(50%);
13 }
14 Rectangle {
15 background: base.darker(50%);
16 }
17 }
18}
19}
20