1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | // ANCHOR: main_window |
5 | component MemoryTile inherits Rectangle { |
6 | width: 64px; |
7 | height: 64px; |
8 | background: #3960D5; |
9 | |
10 | Image { |
11 | source: @image-url("icons/bus.png"); |
12 | width: parent.width; |
13 | height: parent.height; |
14 | } |
15 | } |
16 | |
17 | export component MainWindow inherits Window { |
18 | MemoryTile {} |
19 | } |
20 | // ANCHOR_END: main_window |
21 |