mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-03 18:29:09 +00:00

We implicitly export the last component of a .slint file to the generator. Issue a warning when that happens and suggest to export it explicitly.
23 lines
460 B
Text
23 lines
460 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
|
|
export SubElements := Rectangle {
|
|
|
|
background: blue;
|
|
|
|
Image {
|
|
source: @image-url("foo.png");
|
|
}
|
|
|
|
Image {
|
|
source: @image-url("builtin:/common/does-not-exist.svg");
|
|
// ^warning{Cannot find image file builtin:/common/does-not-exist.svg}
|
|
}
|
|
|
|
Rectangle {
|
|
background: red;
|
|
}
|
|
|
|
|
|
}
|