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 | |
4 | TestButtonImpl := Rectangle { |
5 | property<string> button_text; |
6 | Text { |
7 | x: 10phx; |
8 | y: 10phx; |
9 | text: root.button_text; |
10 | } |
11 | } |
12 | export { TestButtonImpl as TestButton } |
13 | |
14 | export ColorButton := TestButtonImpl { |
15 | property<color> button_color; |
16 | } |
17 |