简单写了一个
let mav = 0
hmUI.createWidget(hmUI.widget.BUTTON, {
x: 40,
y: 240,
w: 400,
h: 100,
radius: 12
normal_color: 0xfc6950,
press_color: 0xfeb4a8,
text: mav,
click_func: () => {
if (mav = = 1000000){
hmUI.showToast({text: 'so what'})
}
else {
mav++;
}
}
})