slint/demos/energy-monitor/ui/widgets/float_button.slint
Simon Hausmann a98d4709be Move printer demo and energy-monitor into new top-level demos/ folder
These are showing off use-cases for Slint, but they're not examples showing individual Slint features.

Also removed the old printerdemo while at it.
2024-10-25 12:09:32 +02:00

28 lines
No EOL
735 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
import { Theme } from "../theme.slint";
import { StateLayer } from "../components/state_layer.slint";
export component FloatButton {
in property <image> icon <=> i-icon.source;
in property <bool> enabled <=> i-state-layer.enabled;
callback clicked <=> i-state-layer.clicked;
min_width: 50px;
min_height: 50px;
i-container := Rectangle {
background: Theme.palette.heliotrope-gradient;
border-radius: max(self.width, self.height) / 2;
i-icon := Image {
colorize: Theme.palette.white;
}
}
i-state-layer := StateLayer {
border-radius: i-container.border-radius;
}
}