1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | import { Theme } from "../theme.slint"; |
5 | |
6 | export component BarBackground inherits Rectangle { |
7 | border-radius: 2px; |
8 | background: Theme.palette.bar-background-gradient; |
9 | opacity: 0.25; |
10 | } |
11 | |
12 | export component ChartPattern { |
13 | in property <int> count; |
14 | |
15 | HorizontalLayout { |
16 | spacing: 1px; |
17 | for _ in count : BarBackground {} |
18 | } |
19 | } |