1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | import { VerticalBox, Button } from "std-widgets.slint"; |
5 | export Recipe := Window { |
6 | property <int> counter: 0; |
7 | callback button_pressed <=> button.clicked; |
8 | VerticalBox { |
9 | button := Button { |
10 | text: "Button, pressed \{root.counter} times"; |
11 | } |
12 | } |
13 | } |
14 |