19 lines
362 B
Plaintext
19 lines
362 B
Plaintext
import { Palette } from "../_imports/coop-widgets.slint";
|
|
|
|
export component Clickable inherits TouchArea {
|
|
in property <image> icon;
|
|
callback action;
|
|
|
|
Image {
|
|
width: 128px;
|
|
height: 128px;
|
|
colorize: root.pressed ? Palette.accent: Palette.foreground;
|
|
source: icon;
|
|
}
|
|
|
|
clicked => {
|
|
action();
|
|
}
|
|
|
|
}
|