// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { Theme } from "../theme.slint"; import { StateLayer } from "../components/state_layer.slint"; export component FloatButton { in property icon <=> i-icon.source; in property 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; } }