promptAction.showToast(文本提示框)
showToast(options: ShowToastOptions): void
创建并显示文本提示框,想看官方文档请点我
ShowToastOptions相关参数请点我
完整代码:
typescript
import { promptAction } from '@kit.ArkUI'
@Entry
@Component
struct Demo1 {
build() {
Column(){
Button('点击我,弹出提示文本框!').onClick(_=>{
promptAction.showToast({
message: 'Hello World!',
duration:2000
})
})
}.height('100%').width('100%').justifyContent(FlexAlign.Center)
}
}
promptAction.showDialog(对话框)
showDialog(options: ShowDialogOptions): Promise
创建并显示对话框,对话框响应后异步返回结果。想看官方文档请点我
ShowDialogOptions相关参数请点我
完整代码:
typescript
import { promptAction } from '@kit.ArkUI'
@Entry
@Component
struct Demo1 {
build() {
Button('点击出现对话框!').onClick(async _=>{
await promptAction.showDialog({
title:'Title标题',
message:'Message Info',
buttons:[
{
text:'button1',
color:'#000000'
},
{
text:'button2',
color:'#000000'
}
],
})
}).width(200).height('80')
}
}