入門:
- 宣告式
- 元件化
案例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型別,也可以按照老師的加上。
======