mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-06 16:40:24 +00:00
20 lines
425 B
Text
20 lines
425 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// ANCHOR: main_window
|
|
component MemoryTile inherits Rectangle {
|
|
width: 64px;
|
|
height: 64px;
|
|
background: #3960D5;
|
|
|
|
Image {
|
|
source: @image-url("icons/bus.png");
|
|
width: parent.width;
|
|
height: parent.height;
|
|
}
|
|
}
|
|
|
|
export component MainWindow inherits Window {
|
|
MemoryTile {}
|
|
}
|
|
// ANCHOR_END: main_window
|