中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
显示警告弹窗组件,可设置文本内容与响应回调。 案例
@Entry @Component struct Index { build() { Flex({direction:FlexDirection.Column,alignItems:ItemAlign.Center,justifyContent:FlexAlign.Center,}){ Button('下一步',) .onClick(() => { AlertDialog.show( { title: '第999关', message: '恭喜你通关啦!', confirm: { value: '确定', action: () => { console.info('通过') } }, cancel: () => { console.info('结束') } } ) }) .backgroundColor(0x317aff) .width('200') .margin('20') Button('访问') .onClick(() => { AlertDialog.show( { title: '访问权限', message: '是否允许访问您设备上的照片与媒体', primaryButton: { value: '禁止', action: () => { console.info('no') } }, secondaryButton: { value: '允许', action: () => { console.info('ok') } }, cancel: () => { console.info('结束') } } ) }).backgroundColor(0x317aff) .width('200') .margin('10') } .width('100%') .height('100%') } }
效果图:
微信扫码分享