import prompt from '@ohos.prompt';
import promptAction from '@ohos.promptAction';
@Entry @Component struct ToastTest {
build() {
Column({space: 10}) {
Button("无参数Toast")
.onClick(() => {
promptAction.showToast({
message: "默认Toast"
})
})
Button("带参数Toast")
.onClick(() => {
promptAction.showToast({
message: "bottom为300的位置", // 显示文本
duration: 8000, // 显示时长
bottom: 300 // 距离底部的距离
})
})
}
.width('100%')
.height('100%')
.padding(10)
}
}