slint/examples/energy-monitor/ui/widgets/chart_pattern.slint
2023-02-27 09:15:01 +01:00

19 lines
No EOL
475 B
Text

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
import { Theme } from "../theme.slint";
export component BarBackground inherits Rectangle {
border-radius: 2px;
background: Theme.palette.bar-background-gradient;
opacity: 0.25;
}
export component ChartPattern {
in property <int> count;
HorizontalLayout {
spacing: 1px;
for _ in count : BarBackground {}
}
}