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
4import { ListView } from "std-widgets.slint";
5
6export Test := Window {
7 VerticalLayout {
8 ListView {}
9 }
10}
11