入门:
- 声明式
- 组件化
案例1:垃圾箱
代码:
@Entry
@Component
struct DeleteButtonPage {
build() {
Column(){
Button(){
Image("pages/helloworld/delete/solution/images/ic_delete.png")
.width(25)
.height(25)
}
.width(50)
.height(50)
.backgroundColor(Color.Red)
}
.onClick(()=>{console.log("删除")})
}
}
效果:
总结:
不会就模仿着写,我这里没加type类型,也可以按照老师的加上。
======
标签:25,ArkTS,--,50,笔记,height,width From: https://www.cnblogs.com/liqi175/p/18115724