I4NM4O3Z7SDWAMQODOCPKJXL2LBMVUPQVGYQUXO6J7MW7WZAH5NAC
HZV5P57YJPTWI34HC5KDGZNOREGME2PBKT3W24DSYFE72UAAYRJQC
NSE6BLWA372T3TYEVMOKWWD725NRYQNLJGWEVXAIQ3EP6R2YNQ7QC
G2CHQAOPRFFDCYVNDXMTB5Y5J2FBRREJPMUAJJTVQDSZE3VFLP3QC
XERTHGSY3OMO7CBVVHIXI7LH6JY4AOS7BA6WQP22JBO2NDWGBH4QC
import { Button, VerticalBox, HorizontalBox, ScrollView, ListView, StandardListView } from "std-widgets.slint";
import { Palette, Button, VerticalBox, HorizontalBox, ScrollView, ListView, StandardListView } from "std-widgets.slint";
component ChangeEntry {
component ChangeEntry inherits Rectangle {
in-out property <bool> is-selected: false; touch := TouchArea { clicked => { is-selected = true; } }
in-out property <bool> is-selected: false;
touch := TouchArea {
clicked => {
is-selected = true;
}
states [ selected when is-selected: { root.background: Palette.selection-background; } lowlighted when !is-selected && touch.has-hover: { root.background: Palette.alternate-background; } off when !is-selected && !touch.has-hover: { root.background: Palette.background; } ]
states [
selected when is-selected: {
root.background: Palette.selection-background;
lowlighted when !is-selected && touch.has-hover: {
root.background: Palette.alternate-background;
off when !is-selected && !touch.has-hover: {
root.background: Palette.background;
]
component Changelog {
component Changelog inherits Rectangle {