slint/internal/compiler/tests/syntax/lookup/two_way_binding_model.slint

14 lines
358 B
Text

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
struct Foo {
field: string
}
export component Testcase {
property <[Foo]> model;
for item in model: Text {
text <=> item.field;
// ^error{Two-way bindings to model data is not supported yet}
}
}