1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
2 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
3 | |
4 | Win := Window { |
5 | GridLayout { |
6 | Image { |
7 | source: @image-url("../../../examples/printerdemo/ui/images/cat.jpg" ); |
8 | } |
9 | Image { |
10 | source: @image-url("../../../examples/printerdemo/ui/images/cat.jpg" ); |
11 | image-fit: contain; |
12 | } |
13 | Image { |
14 | row: 1; |
15 | source: @image-url("../../../examples/printerdemo/ui/images/cat.jpg" ); |
16 | image-fit: cover; |
17 | } |
18 | Image { |
19 | source: @image-url("../../../examples/printerdemo/ui/images/cat.jpg" ); |
20 | image-fit: fill; |
21 | } |
22 | } |
23 | } |
24 | |