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 | global ResizeState { |
5 | in property <length> handle-size: 10px; |
6 | } |
7 | |
8 | component ResizeHandle { |
9 | width <=> ResizeState.handle-size; |
10 | } |
11 | |
12 | export component Resizer { |
13 | ResizeHandle { |
14 | x: 50px; |
15 | } |
16 | } |